����JFIF��`�`�����Viewing File: /home/u820193700/domains/throtllr.in/public_html/admin/admin.css
:root {
    --re-red: #A32020;
    --dark-charcoal: #1C1C1C;
    --darker-bg: #121212;
    --off-white: #F5F5F0;
    --sidebar-width: 250px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-charcoal);
    color: var(--off-white);
    overflow-x: hidden;
}

#sidebar {
    width: var(--sidebar-width);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: var(--darker-bg);
    border-right: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    padding-top: 20px;
}

#sidebar .brand {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
}

#sidebar a {
    color: #A0A0A0;
    text-decoration: none;
    padding: 15px 25px;
    display: block;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

#sidebar a:hover, #sidebar a.active {
    color: var(--off-white);
    background-color: rgba(255,255,255,0.05);
    border-left-color: var(--re-red);
}

#main-content {
    margin-left: var(--sidebar-width);
    padding: 30px;
}

.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.stat-card h3 {
    font-size: 36px;
    color: var(--re-red);
    margin-bottom: 5px;
}

.table-dark {
    --bs-table-bg: transparent;
    border-color: rgba(255,255,255,0.1);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--darker-bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--re-red);
}

/* Premium Modals */
.modal-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    color: #212529;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 24px;
}

.modal-header .btn-close {
    filter: none;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 24px;
}

/* Premium Custom Tabs */
.modal .nav-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.modal .nav-link {
    color: #6c757d;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 16px;
    font-weight: 500;
    background: transparent;
    transition: all 0.2s ease;
}

.modal .nav-link:hover {
    color: #212529;
    border-bottom-color: rgba(0, 0, 0, 0.15);
}

.modal .nav-link.active {
    color: #212529;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--re-red);
}

/* Info List */
.info-list-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-list-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.info-value {
    font-weight: 500;
    color: #212529;
}

/* Badge Enhancements */
.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.75rem;
}

.bg-pending {
    background-color: rgba(255, 193, 7, 0.15) !important;
    color: #ffc107 !important;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.bg-assigned {
    background-color: rgba(13, 202, 240, 0.15) !important;
    color: #0dcaf0 !important;
    border: 1px solid rgba(13, 202, 240, 0.3);
}

.bg-completed {
    background-color: rgba(40, 167, 69, 0.15) !important;
    color: #28a745 !important;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.bg-cancelled, .bg-rejected {
    background-color: rgba(220, 53, 69, 0.15) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.bg-reviewing {
    background-color: rgba(253, 126, 20, 0.15) !important;
    color: #fd7e14 !important;
    border: 1px solid rgba(253, 126, 20, 0.3);
}

.bg-approved, .bg-converted {
    background-color: rgba(40, 167, 69, 0.15) !important;
    color: #28a745 !important;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Bulletproof Dark Text Override for Modals */
.modal-content {
    background: #ffffff !important;
    color: #212529 !important;
}

.modal-content .modal-title,
.modal-content h1,
.modal-content h2,
.modal-content h3,
.modal-content h4,
.modal-content h5,
.modal-content h6 {
    color: #212529 !important;
}

.modal-content .info-label {
    color: #6c757d !important;
}

.modal-content .info-value {
    color: #212529 !important;
}

/* Force badge text visibility */
.modal-content .badge.text-success {
    color: #198754 !important;
    background-color: rgba(25, 135, 84, 0.1) !important;
    border: 1px solid rgba(25, 135, 84, 0.2) !important;
}

.modal-content .badge.text-secondary {
    color: #6c757d !important;
    background-color: rgba(108, 117, 125, 0.1) !important;
    border: 1px solid rgba(108, 117, 125, 0.2) !important;
}

/* Force dark background for form select options */
.form-select option, .form-select optgroup {
    background-color: Canvas !important;
    color: CanvasText !important;
}

/* ==========================================
   Responsive Design Media Queries
========================================== */

@media (max-width: 991px) {
    #sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    #sidebar .brand {
        width: 100%;
        margin-bottom: 10px;
        padding-top: 10px;
    }
    
    #sidebar a {
        display: inline-block;
        padding: 10px 15px;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 14px;
    }
    
    #sidebar a:hover, #sidebar a.active {
        border-left: none;
        border-bottom-color: var(--re-red);
    }
    
    #sidebar a.mt-5 {
        margin-top: 0 !important;
    }
    
    #main-content {
        margin-left: 0;
        padding: 15px;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .glass-card {
        padding: 15px !important;
    }
}

@media (max-width: 767px) {
    #sidebar a {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    #sidebar a i {
        display: block;
        margin-bottom: 4px;
        margin-right: 0 !important;
        text-align: center;
    }
    
    .table-responsive {
        border: 0;
    }
}
Back to Directory �������}�!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������������������������������������������������������������������������������� ������w�!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������ ��?��_��+��?��(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(�����