:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --dark: #1e293b;
    --light: #f8fafc;
    
    --bg-body: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-header: #f8fafc;
    --bg-input: #ffffff;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --table-hover: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    background: linear-gradient(180deg, var(--dark) 0%, #0f172a 100%);
    padding: 20px 0;
    z-index: 1050;
    transition: transform 0.3s ease, background 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.sidebar * {
    pointer-events: auto;
}

.sidebar-brand {
    padding: 15px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sidebar-logo {
    max-height: 70px;
    max-width: 220px;
    width: 100%;
    margin-bottom: 8px;
    object-fit: contain;
}

.sidebar-brand small {
    display: block;
    margin-top: 2px;
    font-size: 0.8rem;
}

/* Mobile Header with Logo */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mobile-header-logo {
    max-height: 45px;
    max-width: 150px;
    height: auto;
}

.mobile-header .mobile-toggle {
    position: fixed;
    top: 12px;
    left: 15px;
    right: auto;
    z-index: 1001;
}

/* Adjust body padding for mobile header */
body {
    padding-top: 0;
}

@media (max-width: 991px) {
    body {
        padding-top: 60px;
    }
}

/* Desktop Sidebar Logo - Larger */
@media (min-width: 992px) {
    .sidebar-logo {
        max-height: 80px;
        max-width: 240px;
    }
    .sidebar-brand {
        padding: 20px 25px 25px;
    }
}

/* Tablet Sidebar Logo */
@media (max-width: 991px) {
    .sidebar-logo {
        max-height: 55px;
        max-width: 180px;
    }
}

/* Mobile Sidebar Logo */
@media (max-width: 576px) {
    .sidebar-logo {
        max-height: 50px;
        max-width: 160px;
    }
    .sidebar-brand {
        padding: 12px 15px 15px;
    }
}

/* Login/Register Page Logo */
.login-logo {
    max-height: 70px;
    max-width: 200px;
    height: auto;
}

@media (max-width: 576px) {
    .login-logo {
        max-height: 55px;
        max-width: 160px;
    }
}

/* Navbar Logo */
.nav-logo {
    max-height: 45px;
    max-width: 160px;
    height: auto;
}

@media (max-width: 576px) {
    .nav-logo {
        max-height: 40px;
        max-width: 140px;
    }
}

/* Footer Logo */
.footer-logo {
    max-height: 40px;
    max-width: 150px;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .footer-logo {
        max-height: 35px;
        max-width: 130px;
    }
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin: 4px 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus,
.sidebar-nav a:active {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateX(5px);
}

.sidebar-nav a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: translateX(5px);
}

.sidebar-nav a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.sidebar-nav a i {
    margin-right: 12px;
    width: 20px;
    font-size: 1.1rem;
}

/* Sidebar Notifications */
.sidebar-notifications {
    margin: 4px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.sidebar-notifications-header {
    padding: 10px 15px 5px;
}

.sidebar-notifications-list {
    max-height: 200px;
    overflow-y: auto;
}

.sidebar-notification-item {
    display: block;
    padding: 8px 12px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: background 0.2s ease;
    border-left: 2px solid transparent;
}

.sidebar-notification-item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.sidebar-notification-item.unread {
    background: rgba(102, 126, 234, 0.15);
    border-left-color: #667eea;
}

.sidebar-notification-item.unread:hover {
    background: rgba(102, 126, 234, 0.25);
}

.sidebar-notifications-footer {
    display: block;
    padding: 8px 15px 10px;
    text-align: center;
    color: #667eea;
    font-size: 0.8rem;
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar-notifications-footer:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #fff;
}

/* Main Content */
.main-content {
    margin-left: 260px;
    min-height: 100vh;
}

/* Topbar */
.topbar {
    background: var(--bg-card);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.topbar h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.wallet-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Content Area */
.content-area {
    padding: 25px;
}

@media (max-width: 991px) {
    .content-area {
        padding: 15px;
    }
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.card-header {
    background: var(--bg-card-header);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.card-body {
    padding: 20px;
    background: var(--bg-card);
    transition: background-color 0.3s ease;
}

/* Stat Cards */
.stat-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-card .stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 10px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 10px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Tables */
.table {
    margin-bottom: 0;
    color: var(--text-primary);
}

.table thead th {
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 12px;
    background-color: var(--bg-card-header);
    transition: background-color 0.3s ease;
}

.table td {
    vertical-align: middle;
    padding: 15px 12px;
    border-color: var(--border-color);
    background-color: var(--bg-card);
    transition: background-color 0.3s ease;
}

.table-hover tbody tr:hover {
    background-color: var(--table-hover);
}

/* Badges */
.badge {
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.8rem;
}

.bg-success {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

.bg-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.bg-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: #fff !important;
}

.bg-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
}

.bg-secondary {
    background: linear-gradient(135deg, #64748b, #475569) !important;
}

/* Hero Background Image */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.92));
}

.hero-bg.admin-hero .hero-overlay {
    background: linear-gradient(rgba(127, 29, 29, 0.88), rgba(30, 41, 59, 0.92));
}

/* Auth Pages (Login/Register) */
.auth-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transition: background-color 0.3s ease;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    max-height: 80px;
    max-width: 240px;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.auth-form {
    margin-bottom: 20px;
}

.auth-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.admin-link {
    color: var(--danger);
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 20px;
    display: inline-block;
}

/* Input Groups */
.input-group-text {
    background: var(--bg-card-header);
    border: 2px solid var(--border-color);
    border-right: none;
    color: var(--text-secondary);
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 576px) {
    .auth-card {
        padding: 30px 25px;
    }
    .auth-logo {
        max-height: 60px;
        max-width: 180px;
    }
    .auth-title {
        font-size: 1.5rem;
    }
}

/* Dark Mode Styles for Auth */
body.dark-mode .auth-page {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body.dark-mode .auth-card {
    background: #1e293b;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

body.dark-mode .input-group-text {
    background: #334155;
    border-color: #475569;
    color: #94a3b8;
}

body.dark-mode .admin-link {
    background: rgba(220, 53, 69, 0.2);
}

/* Admin Auth Page */
.admin-auth {
    /* Background handled inline in HTML */
}

/* Alias for backward compatibility */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.login-card .logo {
    text-align: center;
    margin-bottom: 30px;
}

/* Forms */
.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-input);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Price Tag */
.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Country Flag */
.country-flag {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border-radius: 2px;
}

/* SMS Message */
.sms-message {
    background: var(--bg-card-header);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    border-left: 4px solid var(--primary);
    transition: background-color 0.3s ease;
}

.sms-message .code {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.sms-message .text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Order Card */
.order-card {
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.order-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
}

.order-card .phone-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.order-card .service-badge {
    background: var(--bg-card-header);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Modal */
.modal-content {
    border-radius: 16px;
    border: none;
}

.modal-header {
    border-radius: 16px 16px 0 0;
}

.modal-lg {
    max-width: 800px;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Alert Styling */
.alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.alert-success {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

/* Quick Actions */
.quick-action-btn {
    padding: 20px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-action-btn:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.quick-action-btn i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1060;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Mobile Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* User Dashboard Stats */
.user-stat-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.user-stat-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.user-stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.user-stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Orders Table Cards (Mobile) */
.order-list-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.order-list-card .order-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.order-list-card .order-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar {
        transform: translateX(-100%);
        z-index: 1050;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .topbar {
        padding-left: 70px;
    }
}

@media (max-width: 767.98px) {
    .content-area {
        padding: 15px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .card-header {
        padding: 15px;
    }
    
    .stat-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .stat-card .stat-value {
        font-size: 1.5rem;
    }
    
    .table-responsive {
        border: none;
    }
    
    .table thead {
        display: none;
    }
    
    .table tbody tr {
        display: block;
        background: var(--bg-card);
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 10px;
        border: 2px solid var(--border-color);
    }
    
    .table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none;
    }
    
    .table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--secondary);
    }
    
    .btn-group {
        width: 100%;
        display: flex;
        gap: 5px;
    }
    
    .btn-group .btn {
        flex: 1;
    }
    
    .topbar h2 {
        font-size: 1rem;
    }
    
    .wallet-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .login-card,
    .auth-card {
        padding: 30px 20px;
    }
    
    .quick-action-btn {
        padding: 15px;
    }
    
    .quick-action-btn i {
        font-size: 1.5rem;
    }
}

/* Bottom Navigation Bar (Mobile Only) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom-nav-item:active i {
    transform: scale(0.9);
}

.bottom-nav-item.active {
    color: #fff;
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
    color: var(--primary);
}

/* Show bottom nav only on mobile */
@media (max-width: 991.98px) {
    .bottom-nav {
        display: flex;
    }
    
    .content-area {
        padding-bottom: 85px;
    }
    
    /* Hide profile link in topbar dropdown on mobile when bottom nav is shown */
    .topbar .dropdown .dropdown-menu {
        margin-bottom: 10px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .bottom-nav {
        height: 65px;
    }
    
    .bottom-nav-item i {
        font-size: 1.2rem;
    }
    
    .bottom-nav-item span {
        font-size: 0.65rem;
    }
}

/* Print Styles */
@media print {
    .sidebar, .topbar, .btn {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
    }
}
