/* Стили для карточек */
.catalog-report {
    /* display: flex;
    flex-direction: row; */
    gap: 30px;
    margin-bottom: 40px;
    color: #0B2C5D;
}

.catalog-report-card {
    display: flex;
    flex-direction: row;
}

.catalog-content {
    flex: 0 0 550px;
}

.catalog-content img {
    border-radius: 15px;
    width: 500px;
    height: 400px;
}

.catalog-paginator-container {
    justify-self: center !important;
}

.catalog-report-card-text {
    flex: 1;
}

.catalog-report-title a {
    color: #0B2C5D;
    font-size: 35px;
    font-weight: bold;
    text-decoration: none
}

.catalog-report-title {
    margin-bottom: 20px;
}


.catalog-report-card-date {
    margin-bottom: 15px;
}

.catalog-report-card-content {
    color: #1F4071;
    font-size: 30px;
    font-weight: 200;
}



/* Стили для управления */
.catalog-report-controls {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
    padding-top: 15px;
}

.catalog-more-button {
    display: inline-block;
    /* Для управления размерами и позиционированием */
    background-color: #0DA8CD;
    color: #FFFFFF;
    padding: 10px 160px;
    /* Увеличенные отступы по горизонтали для растягивания кнопки */
    border-radius: 15px;
    /* Скругление углов */
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    /* Центрирование текста */
}

.catalog-more-button:hover {
    background-color: #098aa1;
    /* Темнее при наведении */
}

.year-selection {
    background-color: #0DA8CD;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

.year-filter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.year-filter-label {
    color: #fff;
    font-size: 24px;
    /* Увеличен размер текста */
    font-weight: bold;
    text-transform: uppercase;
}

.custom-select {
    position: relative;
    display: inline-block;
}

.year-filter {
    padding: 10px 20px;
    border-radius: 15px;
    background: #fff;
    color: #0DA8CD;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    min-width: 120px;
}

.select-items {
    position: absolute;
    left: 50%;
    top: calc(100% + 5px);
    transform: translateX(-50%);
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    padding: 10px 0;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    opacity: 0;
    max-height: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(.4, 0, .2, 1), max-height 0.3s cubic-bezier(.4, 0, .2, 1);
    max-width: 100%;
}

.select-items.select-show {
    opacity: 1;
    max-height: 80px;
    pointer-events: auto;

}

.select-items div {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    color: #0DA8CD;
    font-size: 16px;
    text-align: center;
    margin: 0 5px;
    border-radius: 10px;
    transition: background .2s;
    white-space: nowrap;
}

.select-items div:hover {
    background-color: #f1f1f1;
}