

/* Кнопка "Сохранить" */
#save-about-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#save-about-button.active {
    background-color: #4CAF50;
    /* Зелёный */
    color: white;
}

#save-about-button.inactive {
    background-color: #cccccc;
    /* Серый */
    color: #666666;
    cursor: not-allowed;
}

/* Текстовое поле */
#about-text {
    width: 100%;
    height: 150px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    box-sizing: border-box;
    resize: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    transition: background-color 1.0s, color 1.0s;
    margin-top: 10px;
    background-color: #f9f9f9;
}


.user-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    /* Убирает искажение изображения */
    float: right;
    /* Размещает фото справа */
    margin-left: 10px;
    /* Добавляет отступ между текстом и фото */
}

body.dark-theme #about-text {
    background-color: #555;
    color: white;
    border-color: #888;
}

#about-text:focus {
    border-color: #4caf50;
    box-shadow: 0 0 19px rgba(76, 175, 80, 0.5);
    outline: none;
}









.user-info {
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.dark-theme .user-info {
    background-color: #686868;
    color: white;
}
