.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f0f0f0;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

.sidebar a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    font-family: "Arial", sans-serif;
    transition: background-color 0.5s ease
}

.sidebar a:hover {
    background-color: #E03737;
    color: white;
    transition-property: background-color, color;
    transition-duration: 0.5s;

}

.sidebar a.logo-link {
    padding: 0;
    text-decoration: none;
    color: inherit;
    font-weight: normal;
    font-size: inherit;
    transition: none;
}

/* Стили для логотипа */
.sidebar img {
    width: 250px;
    height: auto;
    display: block;
    position: relative;
    margin-bottom: 10px;
    top: 0;
}

/* Отступ справа для контента */
.content {
    margin-left: 250px;
    padding: 20px;
}

.content ul {
    padding: 0;
    margin: 0;
}

.content li {
    display: flex; /* Используем flexbox для расположения текста и изображения в одной строке */
    align-items: flex-start; /* Выравниваем элементы по верхнему краю */
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.urgent, .important {
    border-left: 4px solid #E03737;
}

.announcement-details {
    flex-grow: 1; /* Растягиваем блок с текстовой информацией, чтобы он занимал всю доступную ширину */
    padding-right: 20px; /* Отступ справа для текста объявления */
    text-align: center;
}

.content li h2 {
    margin-right: 20px; /* Отступ справа для текста объявления */
    flex-grow: 1; /* Растягиваем текст объявления, чтобы он занимал всю доступную ширину */
    text-align: center;
}

.content li img {
    width: 400px; /* Ширина изображения */
    height: auto; /* Автоматическая высота изображения для сохранения пропорций */
    max-height: 400px; /* Максимальная высота изображения */
    object-fit: contain; /* Сохранение пропорций изображения */
    border-radius: 5px; /* Добавляем скругление углов */
}

.content h1 {
    border-bottom: 2px solid #ccc;
    text-align: center;
    font-family: "Arial", sans-serif;
}

.content h2 {
    color: black;
    font-family: "Arial", sans-serif;
}

.content h3 {
    color: black;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    margin-top: -15px;
    margin-bottom: 20px;
    font-family: "Arial", sans-serif;
}

.content p {
    margin-top: 10px; /* Добавляем отступ сверху */
    text-align: left; /* Выравниваем текст по левому краю */
    font-size: 18px; /* Уменьшаем размер шрифта */
    font-family: "Arial", sans-serif;
}

.important h2 {
    color: #E03737;
    font-family: "Arial", sans-serif;
}

.important {
    border: 2px solid #E03737;
    padding: 10px;
    border-radius: 15px;
}

.sidebar-bottom {
    align-items: center;
    margin-top: 70px;
    border-radius: 15px;
}

.telegram-button, .payment-button {
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.telegram-button {
    background-color: #E03737;
}

.payment-button {
    background-color: #E03737;
}

.sidebar .telegram-button:hover {
    background-color: #981919;
}

.sidebar .payment-button:hover {
    background-color: #981919;
}

.sidebar .telegram-button, .sidebar .payment-button {
    color: white;
    font-size: 22px;
    font-family: "Arial", sans-serif;
}

