.hoh-avatar-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.hoh-avatar-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hoh-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hoh-avatar-initials {
    font-size: 36px;
    font-weight: bold;
    color: #555;
}

.hoh-avatar-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hoh-avatar-upload-btn,
.hoh-avatar-remove-btn {
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.hoh-avatar-upload-btn {
    background: #6a5acd;
    color: white;
}

.hoh-avatar-remove-btn {
    background: #ddd;
    color: #333;
}
