.lel_profile-header-user {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    /*  background: linear-gradient(135deg, #e91e63, #9c27b0);*/
    border-bottom: 2px solid linear-gradient(135deg, #e91e63, #9c27b0);;
}

.lel_profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-gradient);
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lel_profile-block-username
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lel_profile-username {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.lel_profile-header {
    text-align: center;
    margin-bottom: 1rem;
}
.lel_profile-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.lel_profile-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.lel_profile-form {
    width: 100%;
}

.lel_profile-form-group-many
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.lel_profile-form-group {
    width: 100%;
    margin-bottom: 1.75rem;
}
.lel_profile-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}



/* Стили для загрузки фото */
.lel_profile-photo-upload-container {
    border: 2px dashed #e0e0e0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.lel_profile-photo-upload-container:hover {
    border-color: var(--primary-color);
}



.lel_profile-btn-secondary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
}
.lel_profile-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-color);
    color: white;
}
.lel_profile-btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}



.lel_profile-photo-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}
.lel_profile-photo-preview-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.lel_profile-photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lel_profile-remove-photo {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
}
.lel_profile-remove-photo:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}



.lel_profile-loadAddictions_settings-section {
    /* padding: 1.5rem;*/
    border-bottom: 1px solid #f0f0f0;
}
.lel_profile-loadAddictions_settings-section:last-child {
    border-bottom: none;
}
.lel_profile-loadAddictions_section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    /*margin-bottom: 5px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lel_profile-loadAddictions_section-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.lel_profile-loadAddictions_interests-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
    width: 100%;
    margin-top: 10px;
}
.lel_profile-loadAddictions_interests-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-color);
    color: white;
}
.lel_profile-loadAddictions_interests-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.lel_profile-loadAddictions_selected-interests-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}
.lel_profile-loadAddictions_selected-interests-preview h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.lel_profile-loadAddictions_selected-interests-list {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}




/* Стили для превью фотографий */
.lel_profile-photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.lel_profile-photo-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.lel_profile-photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lel_profile-remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    background: rgba(255,0,0,0.7);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.lel_profile-remove-photo:hover {
    background: rgba(255,0,0,0.9);
}
.lel_profile-btn-secondary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.lel_profile-btn-secondary:disabled:hover {
    background-color: #ccc;
}





