
        /* General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #FF7F11;
            --primary-dark: #E06D00;
            --primary-light: #FFA04D;
            --secondary: #2E3532;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --success: #4CAF50;
            --danger: #dc3545;
            --warning: #ffc107;
            --info: #17a2b8;
            --profit: #28a745;
            --sidebar-width: 250px;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--dark);
            min-height: 100vh;
            display: flex;
        }
        
        /* Sidebar */
        .sidebar {
            width:148px;
            background: var(--secondary);
            color: white;
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            padding: 20px 0;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
            overflow-y: auto;
        }
        
        .logo {
            padding: 0 20px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            margin-top: 10px;
        }
        
        .nav-links {
            list-style: none;
        }
        
        .nav-links li {
            margin-bottom: 5px;
        }
        
        .nav-links a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .nav-links a:hover, .nav-links a.active {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-left: 4px solid var(--primary);
        }
        
        .nav-links a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
            margin-left: 130px;
            width: calc(100% - var(--sidebar-width));
        }
        
        /* Header */
        header {
            background: white;
            color: var(--dark);
            padding: 15px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 99;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-title {
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logout-btn {
            background: var(--danger);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            margin-left: 15px;
        }
        
        .logout-btn:hover {
            background: #c82333;
        }
        
        /* Page Content */
        .page-content {
            padding: 30px;
        }
        
        /* Dashboard Cards */
        .dashboard-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow:   3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .stat-card {
            text-align: center;
        }
        
        .stat-card h3 {
            color: var(--gray);
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .stat-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
        }
        
        .profit-value {
            color: var(--profit);
        }
        
        .cost-value {
            color: var(--danger);
        }
        
        .lbp-price {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 5px;
        }
        
        /* Page Sections */
        .page-section {
            display: none;
        }
        
        .page-section.active {
            display: block;
        }
        
        /* Menu Items */
        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .menu-item {
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .menu-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .menu-item-img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
        }
        
        .menu-item-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .menu-item-price {
            color: var(--primary);
            font-weight: bold;
        }
        
        /* Order Summary */
        .order-summary {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .order-summary h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        
        /* حقول الإدخال للخصم والزبون */
        .order-meta {
            margin-bottom: 20px;
            padding: 15px;
            background-color: var(--light-gray);
            border-radius: 8px;
        }

        .input-group {
            margin-bottom: 10px;
        }

        .input-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: var(--secondary);
        }

        .input-group input,
        .input-group select,
        .input-group textarea {
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
        }

        .order-discount {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed var(--light-gray);
        }
        
        .order-items {
            margin-bottom: 20px;
        }
        
        .order-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .order-item-info {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
        
        .order-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .quantity-btn {
            background-color: var(--light-gray);
            border: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .remove-item {
            color: var(--danger);
            background: none;
            border: none;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .order-total {
            font-size: 1.2rem;
            font-weight: bold;
            display: flex;
            flex-direction: column;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid var(--primary);
        }
        
        .total-line {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .lbp-total {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn {
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            flex: 1;
            text-align: center;
            transition: all 0.3s ease;
            min-width: 120px;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
        
        .btn-danger {
            background-color: var(--danger);
            color: white;
        }
        
        .btn-danger:hover {
            background-color: #c82333;
        }
        
        .btn-success {
            background-color: var(--success);
            color: white;
        }
        
        .btn-success:hover {
            background-color: #3d8b40;
        }
        
        .btn-warning {
            background-color: var(--warning);
            color: var(--dark);
        }
        
        .btn-warning:hover {
            background-color: #e0a800;
        }
        
        .btn-info {
            background-color: var(--info);
            color: white;
        }
        
        .btn-info:hover {
            background-color: #138496;
        }
        
        /* Categories */
        .category-filter {
            display: flex;
            overflow-x: auto;
            padding: 10px 0;
            margin-bottom: 20px;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 24px 26px;
            border: none;
            background: var(--light-gray);
            border-radius: 20px;
            font-weight: 500;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
        }
        
        .filter-btn.active {
            background: var(--primary);
            color: white;
        }
        
        /* Notification */
        .notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            animation: fadeInOut 3s forwards;
        }
        
        @keyframes fadeInOut {
            0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
            10% { opacity: 1; transform: translateX(-50%) translateY(0); }
            90% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
        }
        
        /* Daily Report Section */
        .daily-report {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .daily-report h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            text-align: center;
        }
        
        .report-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        /* Sold Items Table */
        .sold-items-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .sold-items-table th,
        .sold-items-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .sold-items-table th {
            background-color: var(--primary-light);
            color: var(--secondary);
            font-weight: bold;
        }
        
        .sold-items-table tr:hover {
            background-color: var(--light-gray);
        }
        
        .report-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        
        /* Monthly Overview */
        .monthly-overview {
            margin-top: 30px;
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .monthly-overview h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        
        .monthly-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        /* Print Styles for Receipt */
        @media print {
            body * {
                visibility: hidden;
            }
            .receipt-print, .receipt-print * {
                visibility: visible;
            }
            .receipt-print {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                padding: 15px;
                font-size: 20px !important;
            }
            .no-print {
                display: none !important;
            }
            
            /* Hide everything except report when printing report */
            body.report-print-mode * {
                visibility: hidden;
            }
            body.report-print-mode .daily-report,
            body.report-print-mode .daily-report * {
                visibility: visible;
            }
            body.report-print-mode .daily-report {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                background: white;
                z-index: 9999;
            }
        }
        
        /* Receipt Template (hidden by default) */
       @media print {
    body * {
        visibility: hidden;
    }
    .receipt-print, .receipt-print * {
        visibility: visible;
    }
    .receipt-print {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding: 2px;
        font-size: 26px !important;
        line-height: 1.6;
    }
    .no-print {
        display: none !important;
    }

    body.report-print-mode * {
        visibility: hidden;
    }
    body.report-print-mode .daily-report,
    body.report-print-mode .daily-report * {
        visibility: visible;
    }
    body.report-print-mode .daily-report {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white;
        z-index: 9999;
    }
}

/* Receipt Template */
.receipt-template {
    display: none;
}

.receipt-print {
    width: 80mm;
    font-family: Arial, sans-serif;
    padding: 2px;
    margin: 0;
    background: white;
    font-size: 26px;
    line-height: 1.6;
}

.receipt-header {
    text-align: center;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 2px dashed #000;
}

.receipt-title {
    font-weight: bold;
    font-size: 32px !important; 
    margin-bottom: 6px;
    text-transform: uppercase;
    color: black;
}

.receipt-info {
    font-size: 24px;
    margin-bottom: 3px;
}

.receipt-items {
    width: 100%;
    margin: 8px 0;
    border-collapse: collapse;
    font-size: 24px;
}

.receipt-items th, 
.receipt-items td {
    padding: 5px 0;
    border-bottom: 1px dotted #000;
}

.receipt-items th {
    text-align: left;
    border-bottom: 2px solid #000;
    font-size: 24px;
}

.receipt-total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 2px dashed #000;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.receipt-footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 2px dashed #000;
    text-align: center;
    font-size: 22px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.item-notes {
    font-size: 20px;
    color: #333;
    font-style: italic;
}

        
        /* Responsive */
        @media (max-width: 768px) {
            body {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
                padding: 10px;
            }
            
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            
            .menu-items {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .report-stats {
                grid-template-columns: 1fr;
            }
            
            .sold-items-table {
                font-size: 1.2rem !important;
            }
            
            .sold-items-table th,
            .sold-items-table td {
                padding: 8px;
            }
            
            .filter-btn {
                padding: 10px 20px;
                font-size: 20px !important;
                font-weight: bold !important;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
            
            .input-group {
                flex-direction: column;
            }
            
            .input-group input,
            .input-group select,
            .input-group textarea {
                width: 100%;
                margin-top: 5px;
            }
        }

        .section-add-customer { margin-top:10px; display:flex; flex-direction:column; gap:8px; }
        .section-add-customer.hidden { display:none; }
        .customer-info { margin-top:16px; padding:14px; border:1px dashed #cbd5e0; border-radius:8px; background:#fbfdff; transition: all 0.2s; }
        .customer-info.hidden { display:none; }
        .customer-detail { margin-bottom:8px; }
        .customer-label { font-weight:700; color:#4a5568; }
        .message-box { margin-top:10px; font-size:0.95rem; color:#2d3748; min-height:20px; transition: opacity 0.3s ease; }
        .input-pair input { width:calc(50% - 8px);}
        .customer-actions{  
            padding: 7px;
            background-color: #d4d4d4;
        }
        .input-pair input{
            border: 0px;
            padding: 7px;
            border-radius: 3px;
        }
        
        /* Dashboard Grid Layout */
        .dashboard-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        
        /* Modal for item notes */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .modal-content {
            background-color: white;
            margin: 15% auto;
            padding: 20px;
            border-radius: 10px;
            width: 80%;
            max-width: 500px;
        }
        
        .close-modal {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close-modal:hover {
            color: black;
        }
        
        /* Items Management Styles */
        .items-management {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .items-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .items-table th,
        .items-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .items-table th {
            background-color: var(--primary-light);
            color: var(--secondary);
            font-weight: bold;
        }
        
        .items-table tr:hover {
            background-color: var(--light-gray);
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: var(--secondary);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .status-available {
            color: var(--success);
            font-weight: bold;
        }
        
        .status-unavailable {
            color: var(--danger);
            font-weight: bold;
        }
        
        @media (max-width: 992px) {
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
   /* إضافة استجابية محسنة للهواتف */
@media (max-width: 768px) {
    body {
        flex-direction: column;
        font-size: 14px;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 10px 0;
    }
    
    .logo {
        padding: 0 15px 15px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .nav-links li {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .nav-links a {
        padding: 10px 15px;
        white-space: nowrap;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    header {
        padding: 10px 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .user-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .logout-btn {
        margin-left: 0;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .page-content {
        padding: 15px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .menu-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .menu-item {
        padding: 10px;
    }
    
    .menu-item-img {
        height: 100px;
    }
    
    .menu-item-title {
        font-size: 0.9rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-summary {
        padding: 15px;
    }
    
    .order-meta {
        padding: 10px;
    }
    
    .input-group {
        margin-bottom: 8px;
    }
    
    .input-group label {
        font-size: 0.9rem;
    }
    
    .order-item {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-item-info {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .order-item-quantity {
        width: 100%;
        justify-content: space-between;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
    
    .category-filter {
        padding: 5px 0;
    }
    
    .filter-btn {
        padding: 12px 16px;
        font-size: 16px !important;
        font-weight: bold !important;
    }
    
    .daily-report, .items-management {
        padding: 15px;
    }
    
    .report-stats, .monthly-stats {
        grid-template-columns: 1fr;
    }
    
    .sold-items-table, .items-table {
        font-size: 0.8rem;
    }
    
    .sold-items-table th, 
    .sold-items-table td,
    .items-table th,
    .items-table td {
        padding: 8px 5px;
    }
    
    .receipt-print {
        font-size: 22px;
    }
    
    .receipt-title {
        font-size: 28px;
    }
    
    .receipt-info, .receipt-items, .receipt-footer {
        font-size: 20px;
    }
    
    .receipt-total {
        font-size: 24px;
    }
    
    .customer-actions {
        padding: 10px;
    }
    
    .input-pair {
        flex-direction: column;
    }
    
    .input-pair input {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    /* تحسينات إضافية للواجهة المحمولة */
    .menu-section {
        order: 2;
    }
    
    .order-summary {
        order: 1;
        margin-bottom: 20px;
    }
    
    /* تحسين عرض الجداول على الهواتف */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .sold-items-table, .items-table {
        min-width: 600px;
    }
    
    /* تحسين شريط التمرير الأفقي للأقسام */
    .category-filter::-webkit-scrollbar {
        height: 5px;
    }
    
    .category-filter::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }
    
    /* تحسينات للشاشات الصغيرة جداً */
    @media (max-width: 480px) {
        .menu-items {
            grid-template-columns: 1fr;
        }
        
        .filter-btn {
            padding: 10px 12px;
            font-size: 14px !important;
        }
        
        .page-content {
            padding: 10px;
        }
        
        .order-summary {
            padding: 10px;
        }
        
        .stat-value {
            font-size: 1.3rem;
        }
    }
    
    /* تحسينات للوضع الأفقي على الهواتف */
    @media (max-width: 768px) and (orientation: landscape) {
        .sidebar {
            position: fixed;
            height: 100vh;
            width: 150px;
            z-index: 1000;
        }
        
        .nav-links {
            flex-direction: column;
            overflow-y: auto;
        }
        
        .main-content {
            margin-left: 150px;
            width: calc(100% - 150px);
        }
        
        .menu-items {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    /* منع التكبير عند التركيز على الحقول في iOS */
    @media screen and (max-width: 768px) {
        input, select, textarea {
            font-size: 16px; /* يمنع التكبير التلقائي في iOS */
        }
    }
}

/* تحسينات عامة للهواتف */
@media (hover: none) and (pointer: coarse) {
    /* تحسين التفاعل مع اللمس */
    .btn, .menu-item, .filter-btn, .quantity-btn {
        min-height: 44px; /* الحجم الأدنى الموصى به للعناصر القابلة للنقر */
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
    }
    
    /* تحسين المسافات بين العناصر القابلة للنقر */
    .menu-items {
        gap: 12px;
    }
    
    .action-buttons .btn {
        margin-bottom: 8px;
    }
}

/* تحسينات للوضع المظلم على الهواتف */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .card, .order-summary, .daily-report, .items-management, .menu-item {
        background-color: #1e1e1e;
        color: #e0e0e0;
    }
    
    .order-meta {
        background-color: #2d2d2d;
    }
    
    .input-group input, 
    .input-group select, 
    .input-group textarea {
        background-color: #2d2d2d;
        color: #e0e0e0;
        border-color: #444;
    }
}
    