.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.buttons-wrapper{
    display: flex;
    flex-wrap: inherit;
    gap: 4%;
    justify-content: space-between;
    margin-top: 20px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-right: var(--space-md);
}

.profile-info h4 {
    margin: 0 0 var(--space-xs);
    color: var(--text-primary);
    font-size: var(--font-size-md);
}

.profile-info p {
    margin: 0 0 var(--space-xs);
    color: var(--text-secondary);
    font-size: 18px;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.theme-toggle .icon {
    stroke: var(--accent-primary);
    transition: stroke 0.3s ease;
}

.theme-toggle .sun,
.theme-toggle .sun-rays {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle .moon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body.light-theme .sun,
body.light-theme .sun-rays {
    opacity: 1;
    transform: scale(1);
}

body.light-theme .moon {
    opacity: 0;
    transform: scale(0.8);
}

body.dark-theme .sun,
body.dark-theme .sun-rays {
    opacity: 0;
    transform: scale(0.8);
}

body.dark-theme .moon {
    opacity: 1;
    transform: scale(1);
}

