/* Общие стили страницы */
body {
    background-color: black !important;
    color: white !important;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Ссылки */
a {
    color: white !important;
    text-decoration: underline;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    color: white !important;
}

/* Кнопки */
button, input[type="submit"] {
    background-color: #ff7a00;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #ffa733;
}

/* Обёртка, если используется */
.container, .content, main {
    padding: 20px;
}
