body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    margin: 20px 0;
}

.suggest-link {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.suggest-link:hover {
    background-color: #0056b3;
}

label {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

select {
    display: block;
    margin: 0 auto 20px auto;
    padding: 8px 12px;
    font-size: 16px;
}

#news-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.news-item:hover {
    transform: scale(1.02);
}

.news-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.news-item pre {
    margin: 0 0 10px 0;
    white-space: pre-wrap;
}

.news-item small {
    color: gray;
}

.news-item .type {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
}

.news-item[data-type="new"] .type {
    background-color: #4caf50;
    color: white;
}

.news-item[data-type="bugfix"] .type {
    background-color: #f44336;
    color: white;
}

.news-item[data-type="upgrade"] .type {
    background-color: #2196f3;
    color: white;
}

.news-item[data-type="films"] .type {
    background-color: #a54caf;
    color: white;
}
