/* Светлый фон — приятный для глаз серо-голубой оттенок */
body {
    background-color: #f0f2f5;
    color: #333;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
}

/* Главный контейнер форума — белый и чистый */
#pun {
    width: 95%;
    max-width: 1200px;
    background: #ffffff;
    border: 1px solid #dcdfe6;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.05);
    margin: 25px auto;
    border-radius: 10px;
    padding: 15px;
}

/* Заголовки — Фиолетовый акцент */
.category h2, #pun-main h2, .main-head {
    background: #7b2cbf !important; /* Насыщенный фиолетовый */
    color: #ffffff !important;
    padding: 12px 20px !important;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    border: none !important;
}

/* Ссылки (названия разделов) */
a { color: #6a0dad; text-decoration: none; }
a:hover { color: #3c096c; text-decoration: underline; }

/* Кнопки — Фиолетовые и заметные */
.button, input[type="submit"], input[type="button"] {
    background: #7b2cbf !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.button:hover, input[type="submit"]:hover {
    background: #9d4edd !important;
    box-shadow: 0 4px 8px rgba(123, 44, 191, 0.3);
}

/* Строки форума — светлые с разделением */
.section td {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 15px !important;
}

/* Подсветка строки при наведении */
.section tr:hover td {
    background: #f8f4ff !important; /* Едва заметный фиолетовый отлив */
}

/* Панель навигации */
#pun-navlinks {
    background: #ffffff;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 20px;
}

#pun-navlinks a {
    color: #555;
    font-weight: 600;
    padding: 12px 15px;
    display: inline-block;
}

#pun-navlinks a:hover {
    color: #7b2cbf;
}

/* Формы ввода */
input[type="text"], textarea {
    border: 1px solid #dcdfe6 !important;
    border-radius: 5px !important;
    padding: 5px !important;
}

input[type="text"]:focus, textarea:focus {
    border-color: #7b2cbf !important;
    outline: none;
}
