

/* Стили для кнопки аккаунта */
#account {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-top: -100px;
}

#account:hover {
    color: red;
    opacity: 60%;
}

/* Модальное окно */
#modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Полупрозрачный черный фон */
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

/* Содержимое модального окна */
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Закрытие модального окна */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* Формы внутри модального окна */
form input, form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

/* Стили для текста */
p {
    font-size: 14px;
}

p button {
    color: #007bff;
    background: none;
    border: none;
    cursor: pointer;
}

p button:hover {
    text-decoration: underline;
}
/* Убираем стиль ссылок (по умолчанию синий цвет и подчеркивание) */
#account a {
    color: #fff; /* Цвет текста, как у обычного текста */
    text-decoration: none; /* Убираем подчеркивание */
}

#account a:hover {
    color: #fff; /* Цвет текста при наведении */
    text-decoration: none; /* Убираем подчеркивание при наведении */
}
