/* ==================== ADMIN HEADER ==================== */
.admin-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 2px solid #10B981;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.admin-hamburger {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: #10B981;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.admin-hamburger:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10B981;
}

.admin-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.admin-header-title i {
    color: #10B981;
    font-size: 1.3rem;
}

.admin-public-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.admin-public-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.admin-public-btn span {
    display: inline;
}

/* ==================== ADMIN SIDEBAR ==================== */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-right: 2px solid #10B981;
    z-index: 1100;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.admin-sidebar.open {
    left: 0;
}

.admin-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 20px;
}

.admin-sidebar-header h2 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.admin-close-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: #10B981;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.admin-close-btn:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10B981;
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
}

.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.admin-sidebar-nav a:hover {
    background: rgba(16, 185, 129, 0.05);
    color: #10B981;
    border-left-color: #10B981;
}

.admin-sidebar-nav a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.admin-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.admin-sidebar-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* ==================== ADMIN CONTENT ==================== */
body.is-admin-page {
    padding-top: 60px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
    .admin-header-title span {
        display: none;
    }
    
    .admin-public-btn span {
        display: none;
    }
    
    .admin-public-btn {
        padding: 8px 12px;
    }
}