.admin-header {
    height: 70px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.left-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
}

.menu-toggle {
    font-size: 22px;
    cursor: pointer;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
}

.badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.dropdown-box {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    background: #fff;
    color: #333;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.dropdown-box a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.dropdown-box a:hover {
    background: #f0f0f0;
}

.dropdown-box p {
    padding: 10px 15px;
    margin: 0;
    background: #f8f8f8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo span {
        display: none;
    }
}