.freight-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: #f3f4f6;
}
.freight-login-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}
.freight-login-box h2 {
    margin: 0 0 24px;
    font-size: 22px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}
.freight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.freight-btn-primary {
    background: #2563EB;
    color: #fff;
}
.freight-btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    background: #e5e7eb;
    color: #374151;
}
.freight-alert {
    margin-top: 12px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}
.freight-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.freight-alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.freight-app {
    display: flex;
    min-height: 100vh;
    background: #f9fafb;
}
.freight-sidebar {
    width: 240px;
    background: #111827;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.freight-brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.freight-sidebar nav {
    flex: 1;
}
.freight-sidebar nav a {
    display: block;
    padding: 10px 12px;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 4px;
    font-size: 14px;
}
.freight-sidebar nav a:hover,
.freight-sidebar nav a.active {
    background: #1f2937;
    color: #fff;
}
.freight-user-meta {
    border-top: 1px solid #374151;
    padding-top: 16px;
    font-size: 13px;
}
.freight-main {
    flex: 1;
    padding: 28px;
    overflow: auto;
}
.freight-main h1 {
    margin: 0 0 20px;
    font-size: 24px;
}
.freight-search-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    background: #fff;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}
.search-field {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}
.search-field label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 4px;
}
.search-field input,
.search-field select {
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}
.freight-data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.freight-data-table th,
.freight-data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
}
.freight-data-table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #374151;
}
.freight-data-table tr:hover {
    background: #f9fafb;
}
.status-active { color: #10B981; }
.status-banned { color: #EF4444; }
#freight-sync-badge {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}
