/* CSS Variables for Light/Dark Theme */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-primary: #333;
    --text-secondary: #666;
    --border-color: #e1e5e9;
    --card-bg: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

[data-theme="dark"] {
    --bg-primary: #0f1419;
    --bg-secondary: #1a1d2e;
    --bg-gradient: linear-gradient(135deg, #0f1419 0%, #1a1d2e 50%, #1e2330 100%);
    --text-primary: #e8eaed;
    --text-secondary: #9aa0a6;
    --text-muted: #5f6368;
    --border-color: rgba(232, 234, 237, 0.12);
    --card-bg: rgba(255, 255, 255, 0.08);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    --accent-color: #8ab4f8;
    --accent-hover: #aecbfa;
    --success-color: #81c995;
    --error-color: #f28b82;
    --warning-color: #fdd663;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.4;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Slightly increase base font size on desktop for better readability */
html { font-size: 17px; }
@media (max-width: 768px) { html { font-size: 16px; } }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(15px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo i {
    font-size: 1.5rem;
    color: #667eea;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.subtitle {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 400;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.language-btn {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-btn:hover {
    background: rgba(52, 152, 219, 0.2);
}

.language-btn.active {
    background: #3498db;
    color: white;
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.theme-btn {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-btn:hover {
    background: rgba(255, 193, 7, 0.2);
}

[data-theme="dark"] .theme-btn {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

[data-theme="dark"] .theme-btn:hover {
    background: rgba(255, 193, 7, 0.3);
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(15px);
}

.nav-tabs {
    display: flex;
    gap: 0.25rem;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: #7f8c8d;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.5rem;
}

.tab-btn:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.tab-btn.active {
    background: #3498db;
    color: white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.tab-btn i {
    font-size: 0.9rem;
}

/* Main Content */
.main {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(15px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(15px);
}

.content-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 0.5rem 0.75rem;
    padding-left: 2.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 250px;
    transition: border-color 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    pointer-events: none;
}

/* Specific override for disabled primary buttons */
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Orders Grid */
.orders-container {
    margin-top: 0.75rem;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.75rem;
}

/* Center empty state in grid */
.orders-grid:has(.empty-state) {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Center empty state in shipments and customer containers */
#shipmentsContainer:has(.empty-state),
#customerOrders:has(.empty-state) {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Alternative centering for containers with empty state class */
.orders-grid.empty-state-container,
#shipmentsContainer.empty-state-container,
#customerOrders.empty-state-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.order-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(10px);
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.order-card.selected {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    animation: selectedShake 2s ease-in-out infinite;
}

/* Shaking animation for selected orders */
@keyframes selectedShake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-1px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(1px);
    }
}

/* Keep animation running even on hover for selected cards */
.order-card.selected:hover {
    /* Animation continues running */
}



.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.order-number {
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
}

.order-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.order-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.detail-label {
    color: #7f8c8d;
    font-weight: 500;
}

.detail-value {
    color: #2c3e50;
    font-weight: 600;
}

.description-detail {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.description-text {
    font-size: 0.75rem;
    line-height: 1.4;
    word-break: break-word;
    max-width: 100%;
    display: block;
    margin-top: 0.25rem;
}

.order-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.action-btn {
    padding: 0.25rem 0.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.action-btn:hover {
    background: rgba(52, 152, 219, 0.2);
}

.action-btn.delete {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.action-btn.delete:hover {
    background: rgba(231, 76, 60, 0.2);
}

/* Shipments */
.shipment-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
}

.shipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shipment-awb {
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
}

.shipment-creation-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 500;
}

.shipment-creation-date i {
    color: #3498db;
    font-size: 0.9rem;
}

.shipment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tracking-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.tracking-link:hover {
    color: #2980b9;
}

.tracking-link.disabled {
    color: #bdc3c7;
    cursor: not-allowed;
}

.shipment-orders {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shipment-order {
    background: rgba(52, 152, 219, 0.05);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.shipment-order-number {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.shipment-order-details {
    color: #7f8c8d;
}

.shipment-order-info {
    flex: 1;
}

.shipment-order-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.shipment-order-description {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(23, 162, 184, 0.1);
    border-radius: 4px;
    border-left: 3px solid #17a2b8;
}

.shipment-order-description i {
    color: #17a2b8;
    margin-right: 0.5rem;
}

.shipment-order-description .description-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

.action-btn.unpin {
    background: rgba(255, 193, 7, 0.1);
    color: #f39c12;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.action-btn.unpin:hover {
    background: rgba(255, 193, 7, 0.2);
    color: #e67e22;
    border-color: rgba(255, 193, 7, 0.3);
}

.shipment-totals {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.total-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.total-item i {
    color: #3498db;
    font-size: 1rem;
}

.total-item span {
    font-weight: 500;
}

.shipment-summary {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 6px;
    margin: 0.75rem 0;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c3e50;
}

.summary-item i {
    color: #3498db;
    font-size: 0.9rem;
}

/* Customer View */
.customer-container {
    margin-top: 0.75rem;
}

.customer-order-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(10px);
}

.customer-order-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.customer-order-card .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.customer-order-card .order-number {
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
}

.customer-order-card .order-status {
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.customer-order-card .order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.customer-order-card .detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #555;
    font-size: 0.8rem;
}

.customer-order-card .detail-item i {
    color: #7f8c8d;
    width: 14px;
}

.customer-order-card .shipment-info {
    background: rgba(52, 152, 219, 0.05);
    border-radius: 6px;
    padding: 0.5rem;
    border-left: 3px solid #3498db;
}

.customer-order-card .shipment-awb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.85rem;
}

.customer-order-card .shipment-awb i {
    color: #3498db;
}

.customer-order-card .no-shipment {
    background: rgba(149, 165, 166, 0.05);
    border-radius: 6px;
    padding: 0.5rem;
    border-left: 3px solid #95a5a6;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.8rem;
}

/* Status Badges */
.status-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-pre-alert {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.status-waiting {
    background: rgba(241, 196, 15, 0.1);
    color: #f39c12;
}

.status-pickup {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.status-warehouse {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.status-booked {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    font-weight: 600;
}

/* New status color classes for the updated status names */
.status-pre-alert-received {
    background: rgba(255, 165, 0, 0.15);
    color: #ff8c00;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.status-pickup-in-progress {
    background: rgba(255, 255, 0, 0.2);
    color: #cc8800;
    border: 1px solid rgba(255, 255, 0, 0.4);
}

.status-stocked {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.customer-order-card .order-status.booked {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.customer-order-card .order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.customer-order-card .detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #555;
    font-size: 0.8rem;
}

.customer-order-card .detail-item i {
    color: #7f8c8d;
    width: 14px;
}

.customer-order-card .shipment-info {
    background: rgba(52, 152, 219, 0.05);
    border-radius: 6px;
    padding: 0.5rem;
    border-left: 3px solid #3498db;
}

.customer-order-card .shipment-awb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #2c3e50;
}

.customer-order-card .shipment-awb i {
    color: #3498db;
}

.customer-order-card .no-shipment {
    background: rgba(149, 165, 166, 0.05);
    border-radius: 6px;
    padding: 0.5rem;
    border-left: 3px solid #95a5a6;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #7f8c8d;
    font-style: italic;
}

.tracking-link.disabled {
    color: #bdc3c7 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.tracking-link.disabled:hover {
    text-decoration: none;
    transform: none;
}

/* Tracking placeholder for direct airline tracking */
.tracking-placeholder {
    text-align: center;
    padding: 2rem 1.5rem;
    color: #7f8c8d;
}

.tracking-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #3498db;
}

.tracking-placeholder p {
    margin: 0.4rem 0;
    font-size: 1rem;
}

/* Empty States */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    color: #7f8c8d;
    min-height: 300px;
    grid-column: 1 / -1; /* Span full width in grid */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.empty-state h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.empty-state p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #e74c3c;
}

/* Forms */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.85rem;
}

.form-group input,
.form-group select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-actions .btn {
    flex: 1;
}

/* Selected Orders */
.selected-orders {
    background: rgba(52, 152, 219, 0.05);
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.75rem;
}

.selected-orders h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.selected-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    font-size: 0.8rem;
    color: #555;
}

/* Admin Controls */
.admin-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

.admin-badge i {
    color: #2ecc71;
}

.admin-only {
    display: none !important;
}

.admin-only.show {
    display: block !important;
}

/* Login Modal */
#loginModal .modal-content {
    max-width: 400px;
}

#loginModal .form-group {
    margin-bottom: 1rem;
}

#loginModal input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

#loginModal input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Admin Mode Styles */
.admin-mode .admin-only {
    display: block !important;
}

.admin-mode .admin-only.show {
    display: block !important;
}

/* Customer Mode Styles */
.customer-mode .admin-only {
    display: none !important;
}

.customer-mode .customer-visible {
    display: block !important;
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0.25rem;
    }
    
    .header {
        padding: 0.5rem 1rem;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
        min-width: 100px;
        flex: 1 1 auto;
    }
    
    .main {
        padding: 0.75rem;
    }
    
    .content-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .search-input {
        width: 100%;
    }
    
    .orders-grid {
        grid-template-columns: 1fr;
    }
    
    .order-details {
        grid-template-columns: 1fr;
    }
    
    .customer-order-card .order-details {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .language-switcher {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .subtitle {
        font-size: 0.7rem;
    }
    
    .tab-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.4rem;
        min-width: 80px;
        flex: 1 1 auto;
    }
    
    .tab-btn i {
        display: none;
    }
}

/* Login Error */
.login-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 500;
}

/* Dark theme overrides */
[data-theme="dark"] .header {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(232, 234, 237, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

[data-theme="dark"] .logo h1 {
    color: var(--text-primary);
}

[data-theme="dark"] .subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .order-card,
[data-theme="dark"] .shipment-card,
[data-theme="dark"] .customer-order-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 234, 237, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .modal-content {
    background: rgba(15, 20, 25, 0.98);
    border: 1px solid rgba(232, 234, 237, 0.2);
    backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .modal-header h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(232, 234, 237, 0.2);
    color: var(--text-primary);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.2);
}

[data-theme="dark"] .search-input {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(232, 234, 237, 0.2);
    color: var(--text-primary);
}

[data-theme="dark"] .search-input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.2);
}

[data-theme="dark"] .tab-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 234, 237, 0.15);
    color: var(--text-secondary);
}

[data-theme="dark"] .tab-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

[data-theme="dark"] .tab-btn.active {
    background: var(--accent-color);
    color: #0f1419;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.4);
}

[data-theme="dark"] .content-header {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 234, 237, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    padding: 1rem 1.25rem;
}

[data-theme="dark"] .content-header h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .empty-state h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .empty-state p {
    color: var(--text-secondary);
}

[data-theme="dark"] .detail-label {
    color: var(--text-secondary);
}

[data-theme="dark"] .detail-value {
    color: var(--text-primary);
}

[data-theme="dark"] .order-number {
    color: var(--text-primary);
}

[data-theme="dark"] .shipment-awb {
    color: var(--text-primary);
}

[data-theme="dark"] .shipment-order-number {
    color: var(--text-primary);
}

[data-theme="dark"] .shipment-order-details {
    color: var(--text-secondary);
}

[data-theme="dark"] .shipment-order-description {
    background: rgba(23, 162, 184, 0.15);
    border-left-color: #17a2b8;
}

[data-theme="dark"] .shipment-order-description i {
    color: #17a2b8;
}

[data-theme="dark"] .shipment-order-description .description-text {
    color: var(--text-secondary);
}

[data-theme="dark"] .shipment-summary {
    background: rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
}

[data-theme="dark"] .summary-item {
    color: var(--text-primary);
}

[data-theme="dark"] .summary-item i {
    color: #3498db;
}

/* Dark theme overrides for customer view */
[data-theme="dark"] .customer-order-card .detail-item {
    color: var(--text-primary);
}

[data-theme="dark"] .customer-order-card .detail-item i {
    color: var(--text-secondary);
}

[data-theme="dark"] .customer-order-card .shipment-awb {
    color: var(--text-primary);
}

[data-theme="dark"] .customer-order-card .no-shipment {
    color: var(--text-secondary);
}

/* Delete Confirmation Styles */
.delete-confirmation {
    background: rgba(231, 76, 60, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
    animation: fadeIn 0.3s ease-in-out;
}

.confirmation-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #e74c3c;
    font-weight: 500;
}

.confirmation-message i {
    font-size: 1.1rem;
}

.confirmation-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.confirmation-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.confirmation-actions .btn-danger {
    background: #e74c3c;
    color: white;
    border: 1px solid #e74c3c;
}

.confirmation-actions .btn-danger:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.confirmation-actions .btn-secondary {
    background: #95a5a6;
    color: white;
    border: 1px solid #95a5a6;
}

.confirmation-actions .btn-secondary:hover {
    background: #7f8c8d;
    border-color: #7f8c8d;
}

/* Dark theme overrides for delete confirmation */
[data-theme="dark"] .delete-confirmation {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
}

[data-theme="dark"] .confirmation-message {
    color: #e74c3c;
}

/* Animation for confirmation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Dark Theme Button Styles */
[data-theme="dark"] .btn-primary {
    background: var(--accent-color);
    color: #0f1419;
    font-weight: 400;
    border: 1px solid rgba(138, 180, 248, 0.3);
    box-shadow: 0 2px 8px rgba(138, 180, 248, 0.2);
}

[data-theme="dark"] .btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(138, 180, 248, 0.3);
    transform: translateY(-1px);
}

[data-theme="dark"] .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    border: 1px solid rgba(232, 234, 237, 0.2);
}

[data-theme="dark"] .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(232, 234, 237, 0.3);
}

[data-theme="dark"] .btn:disabled,
[data-theme="dark"] .btn.disabled {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
    opacity: 0.7;
    pointer-events: none;
}

/* Specific override for disabled primary buttons in dark theme */
[data-theme="dark"] .btn-primary:disabled,
[data-theme="dark"] .btn-primary.disabled {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Ultra-specific override for Create Shipment button when disabled */
#createShipmentBtn:disabled,
#createShipmentBtn.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Even more specific - target by ID and class combination */
button#createShipmentBtn:disabled,
button#createShipmentBtn.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Most specific - target by ID, class, and disabled state */
button#createShipmentBtn.btn.btn-primary:disabled,
button#createShipmentBtn.btn.btn-primary.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Maximum specificity - target by full selector */
button#createShipmentBtn.btn.btn-primary.admin-only:disabled,
button#createShipmentBtn.btn.btn-primary.admin-only.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

[data-theme="dark"] #createShipmentBtn:disabled,
[data-theme="dark"] #createShipmentBtn.disabled {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Even more specific for dark theme */
[data-theme="dark"] button#createShipmentBtn:disabled,
[data-theme="dark"] button#createShipmentBtn.disabled {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Most specific for dark theme */
[data-theme="dark"] button#createShipmentBtn.btn.btn-primary:disabled,
[data-theme="dark"] button#createShipmentBtn.btn.btn-primary.disabled {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* Maximum specificity for dark theme */
[data-theme="dark"] button#createShipmentBtn.btn.btn-primary.admin-only:disabled,
[data-theme="dark"] button#createShipmentBtn.btn.btn-primary.admin-only.disabled {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

[data-theme="dark"] .action-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(232, 234, 237, 0.15);
}

[data-theme="dark"] .action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(232, 234, 237, 0.25);
}

[data-theme="dark"] .action-btn.delete {
    background: rgba(242, 139, 130, 0.15);
    color: #f28b82;
    border-color: rgba(242, 139, 130, 0.3);
}

[data-theme="dark"] .action-btn.delete:hover {
    background: rgba(242, 139, 130, 0.25);
    border-color: rgba(242, 139, 130, 0.4);
}

[data-theme="dark"] .action-btn.unpin {
    background: rgba(255, 193, 7, 0.15);
    color: #f39c12;
    border: 1px solid rgba(255, 193, 7, 0.25);
}

[data-theme="dark"] .action-btn.unpin:hover {
    background: rgba(255, 193, 7, 0.25);
    color: #e67e22;
    border-color: rgba(255, 193, 7, 0.35);
}

[data-theme="dark"] .shipment-totals {
    background: rgba(52, 152, 219, 0.08);
    border-color: rgba(52, 152, 219, 0.15);
}

[data-theme="dark"] .total-item {
    color: var(--text-secondary);
}

[data-theme="dark"] .total-item i {
    color: #8ab4f8;
}

/* Modern Dark Theme Status Badges */
[data-theme="dark"] .status-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(232, 234, 237, 0.2);
}

[data-theme="dark"] .status-pre-alert {
    background: rgba(129, 201, 149, 0.15);
    color: #81c995;
    border-color: rgba(129, 201, 149, 0.3);
}

[data-theme="dark"] .status-waiting {
    background: rgba(253, 214, 99, 0.15);
    color: #fdd663;
    border-color: rgba(253, 214, 99, 0.3);
}

[data-theme="dark"] .status-pickup {
    background: rgba(138, 180, 248, 0.15);
    color: #8ab4f8;
    border-color: rgba(138, 180, 248, 0.3);
}

[data-theme="dark"] .status-warehouse {
    background: rgba(174, 203, 250, 0.15);
    color: #aecbfa;
    border-color: rgba(174, 203, 250, 0.3);
}

[data-theme="dark"] .status-booked {
    background: rgba(129, 201, 149, 0.2);
    color: #81c995;
    border-color: rgba(129, 201, 149, 0.4);
    font-weight: 600;
}

/* Dark theme versions of new status color classes */
[data-theme="dark"] .status-pre-alert-received {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border-color: rgba(255, 165, 0, 0.4);
}

[data-theme="dark"] .status-pickup-in-progress {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    border-color: rgba(255, 255, 0, 0.4);
}

[data-theme="dark"] .status-stocked {
    background: rgba(129, 201, 149, 0.2);
    color: #81c995;
    border-color: rgba(129, 201, 149, 0.4);
}

/* Modern Dark Theme Navigation */
[data-theme="dark"] .nav {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 234, 237, 0.15);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1rem;
}

[data-theme="dark"] .main {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 234, 237, 0.15);
    backdrop-filter: blur(20px);
}

/* Modern Dark Theme Icons */
[data-theme="dark"] .logo i {
    color: var(--accent-color);
}

[data-theme="dark"] .summary-item i {
    color: var(--accent-color);
}

[data-theme="dark"] .customer-order-card .detail-item i {
    color: var(--text-secondary);
}

[data-theme="dark"] .customer-order-card .shipment-awb i {
    color: var(--accent-color);
}

[data-theme="dark"] .customer-order-card .no-shipment i {
    color: var(--text-muted);
}

/* Modern Dark Theme Tracking Links */
[data-theme="dark"] .tracking-link {
    color: var(--accent-color);
    background: rgba(138, 180, 248, 0.1);
    border: 1px solid rgba(138, 180, 248, 0.2);
}

[data-theme="dark"] .tracking-link:hover {
    background: rgba(138, 180, 248, 0.15);
    border-color: rgba(138, 180, 248, 0.3);
    color: var(--accent-hover);
}

[data-theme="dark"] .tracking-link.disabled {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 234, 237, 0.1);
}

/* Modern Dark Theme Empty States */
[data-theme="dark"] .empty-state i {
    color: var(--text-muted);
}

[data-theme="dark"] .empty-state h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .empty-state p {
    color: var(--text-secondary);
} 

[data-theme="dark"] .shipment-creation-date {
    color: var(--text-secondary);
}

[data-theme="dark"] .shipment-creation-date i {
    color: var(--accent-color);
}

[data-theme="dark"] .shipment-actions {
    border-top-color: rgba(232, 234, 237, 0.15);
} 

[data-theme="dark"] .form-group select {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(232, 234, 237, 0.2);
    color: var(--text-primary);
}

[data-theme="dark"] .form-group select:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.2);
}

/* Dark theme select options */
[data-theme="dark"] .form-group select option {
    background: rgba(15, 20, 25, 0.95);
    color: var(--text-primary);
    border: none;
    padding: 8px 12px;
}

[data-theme="dark"] .form-group select option:hover {
    background: rgba(138, 180, 248, 0.2);
    color: var(--text-primary);
}

[data-theme="dark"] .form-group select option:checked {
    background: rgba(138, 180, 248, 0.4);
    color: #0f1419;
    font-weight: 600;
    border-left: 3px solid var(--accent-color);
}

[data-theme="dark"] .form-group select option:selected {
    background: rgba(138, 180, 248, 0.4);
    color: #0f1419;
    font-weight: 600;
    border-left: 3px solid var(--accent-color);
}

/* Additional styles for better visibility */
[data-theme="dark"] .form-group select option:checked:hover {
    background: rgba(138, 180, 248, 0.5);
    color: #0f1419;
    font-weight: 600;
    border-left: 3px solid var(--accent-color);
}

[data-theme="dark"] .form-group select option:selected:hover {
    background: rgba(138, 180, 248, 0.5);
    color: #0f1419;
    font-weight: 600;
    border-left: 3px solid var(--accent-color);
} 

/* Dark theme selected order animation */
[data-theme="dark"] .order-card.selected {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.3);
    animation: selectedShake 2s ease-in-out infinite;
}

[data-theme="dark"] .order-card.selected:hover {
    /* Animation continues running */
} 

/* Drag & Drop Styles */

/* Only show grab cursor for admin users */
.admin-mode .order-card {
    cursor: grab;
}

.order-card:active {
    cursor: grabbing;
}

.order-card.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.order-card.drag-over {
    border: 2px dashed var(--accent-color);
    background: rgba(138, 180, 248, 0.1);
}

/* Export Modal Styles */
.export-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.export-options .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
}

/* Dark theme drag & drop */
[data-theme="dark"] .order-card.dragging {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .order-card.drag-over {
    border-color: var(--accent-color);
    background: rgba(138, 180, 248, 0.15);
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 350px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification::before {
    content: '';
    width: 4px;
    height: 100%;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
}

.notification.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #155724;
}

.notification.success::before {
    background: #155724;
}

.notification.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #721c24;
}

.notification.error::before {
    background: #721c24;
}

.notification.warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #856404;
}

.notification.warning::before {
    background: #856404;
}

.notification.info {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.2);
    color: #0c5460;
}

.notification.info::before {
    background: #0c5460;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Dark theme notification styles */
[data-theme="dark"] .notification {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

[data-theme="dark"] .notification.warning {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffffff;
}

[data-theme="dark"] .notification.success {
    background: rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
    color: #ffffff;
}

[data-theme="dark"] .notification.error {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
    color: #ffffff;
}

[data-theme="dark"] .notification.info {
    background: rgba(23, 162, 184, 0.15);
    border-color: rgba(23, 162, 184, 0.3);
    color: #ffffff;
} 

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.2);
}

[data-theme="dark"] .form-group textarea {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .form-group textarea::placeholder {
    color: var(--text-muted);
} 


.selected-orders-list{display:flex;flex-direction:column;gap:.25rem;margin-top:.25rem}
.selected-order-item{display:flex;align-items:center;gap:.5rem;padding:.25rem .5rem;border-radius:8px;background:rgba(0,0,0,.03)}
.selected-order-item i{color:#2f80ed}
