/* Общий фон форума: нежно-розовый цвет */
body {
    background-color: #FFF0F5 !important; /* Светлый розовый оттенок */
    background-image: url('https://ibb.co') !important; /* Рисунок ромашек */
    background-repeat: repeat !important; /* Повторение картинок по всему экрану */
    background-attachment: fixed !important; /* Фон остается на месте при прокрутке */
    font-family: Arial, sans-serif;
}

/* Настройка основных блоков форума */
#pun {
    background: rgba(255, 255, 255, 0.85) !important; /* Полупрозрачный белый фон для читаемости текста */
    padding: 20px;
    border-radius: 15px; /* Закругленные углы у форума */
    box-shadow: 0 0 15px rgba(255, 182, 193, 0.5); /* Мягкое розовое свечение вокруг блоков */
}

/* Шапка форума и главные заголовки */
.maintitle, th, #brdmenu {
    background-color: #FFB6C1 !important; /* Яркий розовый цвет для акцентов */
    color: #ffffff !important; /* Белый цвет текста */
    font-weight: bold;
    border-radius: 8px;
}

/* Ссылки на форуме */
a, a:visited {
    color: #D87093 !important; /* Темно-розовый цвет для ссылок */
    text-decoration: none;
}

a:hover {
    color: #FF69B4 !important; /* Яркий розовый цвет при наведении курсора */
    text-decoration: underline;
}

/* Кнопки */
input[type="submit"], input[type="button"], .button {
    background-color: #FFC0CB !important; /* Розовые кнопки */
    color: #4A4A4A !important;
    border: 1px solid #FFB6C1 !important;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

input[type="submit"]:hover, .button:hover {
    background-color: #FFB6C1 !important; /* Кнопки становятся темнее при наведении */
}

