/* Общие стили для страниц */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #0066cc;
    padding: 15px 0;
}

header .logo-text {
    color: white;
    font-size: 24px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a.active {
    font-weight: bold;
}

.articles-list {
    background-color: #fff;
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.articles-list h1 {
    font-size: 30px;
    color: #333;
    text-align: center;
}

.articles-list ul {
    list-style-type: none;
    padding-left: 0;
}

.articles-list li {
    margin: 10px 0;
}

.articles-list li a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.articles-list li a:hover {
    text-decoration: underline;
}

footer {
    background-color: #0066cc;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: 20px;
}

footer p {
    font-size: 16px;
}

/* Обновленный стиль для body в ssbk_style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('articles_bg.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

/* Добавим overlay для лучшей читаемости текста */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

/* Обновим стиль контейнера со статьями для лучшей видимости */
.articles-list {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
/* Обновленный стиль для body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('articles_bg.webp') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh;
}

/* Уменьшаем прозрачность overlay */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7); /* Уменьшил с 0.85 до 0.7 */
    z-index: -1;
}

/* Делаем header и footer полупрозрачными */
header, footer {
    background-color: rgba(0, 102, 204, 0.85); /* Добавляем прозрачность */
}

/* Обновляем контейнер со статьями */
.articles-list {
    background-color: rgba(255, 255, 255, 0.5); /* Уменьшил с 0.9 до 0.8 */
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Улучшаем читаемость ссылок */
.articles-list li a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2); /* Легкий фон для ссылок */
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.articles-list li a:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.8);
}