/* Reset dan base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Cards */
.card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card h2, .card h3, .card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

/* Forms */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

input[type="text"], input[type="password"], input[type="email"], select, textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-success {
    background-color: #27ae60;
    color: white;
}

.btn-success:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-info {
    background-color: #17a2b8;
    color: white;
}

.btn-info:hover {
    background-color: #138496;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

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

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 14px;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

/* Camera Section */
.camera-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.camera-container {
    text-align: center;
    margin-bottom: 20px;
}

.camera-controls {
    margin-top: 15px;
}

.preview-section {
    text-align: center;
}

.preview-section h4 {
    color: #27ae60;
    margin-bottom: 10px;
}

/* Map Section */
.map-section h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.table tr:hover {
    background-color: #f8f9fa;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.stat-card.success {
    border-color: #28a745;
    background-color: #f8fff9;
}

.stat-card.danger {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.stat-card.warning {
    border-color: #ffc107;
    background-color: #fffbf0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-label {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badges */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-info {
    background-color: #17a2b8;
    color: white;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 4px solid;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

.alert-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}

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

.login-logo {
    font-size: 48px;
    margin-bottom: 10px;
    
}

.login-subtitle {
    color: #6c757d;
    font-size: 16px;
}

.login-form {
    margin-bottom: 30px;
}

.login-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    gap: 10px;
    margin: 15px 0;
}

.info-item {
    padding: 8px;
    background: white;
    border-radius: 4px;
    border-left: 3px solid #3498db;
}

.login-features {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 8px;
}

.feature-list {
    list-style: none;
    margin-top: 15px;
}

.feature-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: #6c757d; }
.text-danger { color: #dc3545; }
.hidden { display: none; }
.muted { color: #6c757d; }

/* Responsive Design */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .login-card {
        padding: 20px;
        margin: 10px;
    }
    
    .card {
        padding: 15px;
    }
    
    .table {
        font-size: 14px;
    }
    
    .table th, .table td {
        padding: 8px;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Custom Map Icons */
.custom-div-icon {
    background: transparent;
    border: none;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
}

/* Success States */
.success {
    border-color: #28a745 !important;
    background-color: #d4edda !important;
}

/* Error States */
.error {
    border-color: #dc3545 !important;
    background-color: #f8d7da !important;
}

/* Table Responsive */
.table-responsive {
    overflow-x: auto;
}

/* Info Boxes */
.info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin: 15px 0;
}

.info h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 1px solid #3498db;
    padding-bottom: 10px;
}

.info ul {
    margin-left: 20px;
}

.info li {
    margin-bottom: 8px;
}

/* ===== HEADER & NAVIGATION ===== */
.topbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    align-items: center;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar .logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 10px;
}

.topbar .logo:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.topbar .user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 15px;
}

.topbar .user-info strong {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.topbar .user-role {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-transform: capitalize;
}

.topbar .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.topbar .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.topbar .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.topbar .btn-danger {
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.topbar .btn-danger:hover {
    background: rgba(231, 76, 60, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* ===== ADMIN NAVIGATION ===== */
.admin-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-link:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-link:active {
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 30px 0;
    margin-top: 50px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.footer-content p:first-child {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.footer-tech {
    font-size: 12px !important;
    color: rgba(255,255,255,0.7) !important;
    font-style: italic;
}

/* ===== RESPONSIVE HEADER & FOOTER ===== */
@media (max-width: 768px) {
    .topbar {
        padding: 10px 0;
    }
    
    .topbar .logo {
        font-size: 20px;
        padding: 10px 15px;
        margin: 5px;
    }
    
    .topbar .user-info {
        display: none;
    }
    
    .topbar .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Responsif untuk menu navigasi admin */
    .admin-nav {
        display: none;
    }
    
    .footer {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .footer-content p {
        font-size: 13px;
    }
    
    .footer-content p:first-child {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .topbar .logo {
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .topbar .btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    /* Responsif untuk menu navigasi admin */
    .admin-nav {
        display: none;
    }
    
    .footer {
        padding: 15px 0;
    }
    
    .footer-content p {
        font-size: 12px;
    }
}

/* ===== ENHANCED NAVIGATION ===== */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.topbar {
    animation: fadeInDown 0.5s ease-out;
}

.topbar .logo, .topbar .btn {
    animation: fadeInDown 0.6s ease-out;
}

.topbar .user-info {
    animation: fadeInDown 0.7s ease-out;
}

/* ===== GLASSMORPHISM EFFECT ===== */
.topbar {
    background: rgba(102, 126, 234, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar .btn-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.topbar .btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.3);
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-content {
    position: relative;
    z-index: 1;
}

/* ===== HOVER EFFECTS ===== */
.topbar .logo:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.topbar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ===== ACTIVE STATES ===== */
.topbar .btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* ===== FOCUS STATES ===== */
.topbar .btn:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.topbar .btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.topbar .btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

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

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu-toggle {
    display: none;
}

/* ===== MOBILE LEFT MENU STYLES ===== */
.mobile-left-menu-toggle {
    display: none;
}

.mobile-left-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-left-menu-btn span {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-left-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-left-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-left-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-left-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(102, 126, 234, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255,255,255,0.1);
    box-shadow: 4px 0 20px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    pointer-events: none;
    overflow-y: auto;
}

.mobile-left-menu.active {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-left-menu-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.1);
}

.mobile-left-menu-title h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.mobile-left-menu-content {
    padding: 20px;
}

.mobile-left-menu-section {
    margin-bottom: 25px;
}

.mobile-left-menu-section h4 {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-left-menu-item {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.mobile-left-menu-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.3);
}

.mobile-left-menu-item.mobile-left-menu-danger {
    background: rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.3);
}

.mobile-left-menu-item.mobile-left-menu-danger:hover {
    background: rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.5);
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(102, 126, 234, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-user-info {
    text-align: center;
    color: white;
}

.mobile-user-info strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.mobile-user-role {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: capitalize;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-section {
    margin-bottom: 25px;
}

.mobile-menu-section h4 {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu-item {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
    border-color: rgba(255,255,255,0.3);
}

.mobile-menu-item.mobile-menu-danger {
    background: rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.3);
}

.mobile-menu-item.mobile-menu-danger:hover {
    background: rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.5);
}

/* Desktop only elements */
.desktop-only {
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .mobile-menu {
        display: block !important;
    }
    
    .mobile-left-menu-toggle {
        display: block !important;
    }
    
    .mobile-left-menu {
        display: block !important;
    }
    
    .topbar {
        padding: 0 15px;
    }
    
    .topbar-left, .topbar-right {
        flex: 1;
    }
    
    .topbar-right {
        justify-content: flex-end;
    }
    
    .admin-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .topbar .logo {
        font-size: 20px;
        padding: 12px 16px;
        margin: 8px;
    }
    
    .mobile-menu {
        top: 60px;
    }
    
    .mobile-menu-content {
        padding: 15px;
    }
    
    .mobile-menu-item {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .mobile-left-menu {
        top: 60px;
        width: 250px;
    }
    
    .mobile-left-menu-content {
        padding: 15px;
    }
    
    .mobile-left-menu-item {
        padding: 10px 14px;
        font-size: 14px;
    }
}