/* Header Styles */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left,
.header-right {
    width: 40px;
    display: flex;
    justify-content: center;
}

.header-center {
    flex: 1;
    text-align: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.notification-icon,
.profile-icon svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: 8px;
    left: 32px;
    background: #EC4899;
    color: white;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    display: none;
}

/* Responsive */
@media (max-width: 390px) {
    .header {
        padding: 12px 16px;
    }
}