.reports {
    background-color: white;
    border-radius: 16px;
    width: 100%;
    margin-top: 10px;
    flex: 1;
}

.reports .top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 20px;
}

.reports .top-section .container {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Текст */
.reports .top-section .title h2 {
    color: #222222;
    font-size: 26px;
    font-weight: 600;
}

.reports .top-section .title h2 b {
    color: #07584C;
    font-weight: 600;
    font-size: 26px;
}

/* Сортировка */
.sorting {
    position: relative;
}

.reports .top-section .container .sorting .block {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    background-color: #FEE7BC;
    padding: 0 15px;
    border-radius: 8px;
}

.reports .top-section .container .sorting .block span {
    font-size: 15px;
    color: #6C6C6C;
    margin: 0 10px;
}

.date-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    animation: fadeIn 0.2s ease;
}

.date-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.date-row label {
    font-size: 13px;
    color: #6C6C6C;
}

.date-row input {
    height: 38px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    padding: 0 10px;
    font-size: 14px;
}

.generate-btn {
    margin-top: 10px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background-color: #07584C;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.generate-btn:hover {
    background-color: #06463D;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Excel */
.reports .top-section .container .create-excel {
    background-color: #FFC610;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 15px;
    border-radius: 8px;
    gap: 5px;
    cursor: pointer;
    transition: 0.2s ease;
}

.reports .top-section .container .create-excel span {
    color: #222222;
    font-size: 15px;
    font-weight: 550;
    margin-top: -2px;
}

.reports .top-section .container .create-excel:hover {
    background-color: #F2BE0F;
}




/* Таблица */
.reports .main-section {
    min-height: 420px;
}

.reports .main-section table {
    width: 100%;
    border-collapse: collapse;
}

.reports .main-section table thead tr td {
    background-color: #E9E9E9;
    color: #6C6C6C;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding: 15px 0;
}

.reports .main-section table tbody tr td:last-child,
.reports .main-section table thead tr td:last-child {
    padding-right: 20px;
}

.reports .main-section table tbody tr td:first-child,
.reports .main-section table thead tr td:first-child {
    padding-left: 20px;
}

.reports .main-section table tbody tr {
    border-bottom: 1px solid #E9E9E9;
}

.reports .main-section table tbody tr td:first-child,
.reports .main-section table tbody tr td:first-child a {
    color: #0B8E7A;
    cursor: pointer;
    text-decoration: none;
}

.reports .main-section table tbody tr td {
    color: #222222;
    font-size: 16px;
    font-weight: 450;
    padding: 12px 0;
    text-align: left;
}

.empty {
    font-size: 26px;
    font-weight: 400;
    padding-left: 15px;
    padding-top: 15px;
}

.reports .main-section table tbody tr td .status {
    padding: 5px 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
}



/* Пагинация */
.reports .bottom-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 35px 15px 15px 15px;
}

.reports .bottom-section .block {
    margin-right: 35px;
}

.reports .bottom-section .block:last-child {
    margin-right: 0;
}

.reports .bottom-section .block span {
    color: #64748B;
    font-size: 16px;
    font-weight: 450;
}

.pagination {
    display: flex;
    gap: 12px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    color: #1F2937;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: #F3F4F6;
}

.pagination-btn.active {
    border-color: #00A991;
    color: #00A991;
    background: #ECFDFB;
}

.pagination-btn.disabled {
    color: #9CA3AF;
    border-color: #E5E7EB;
    cursor: not-allowed;
    pointer-events: none;
    background: #F9FAFB;
}

.info-icon {
    width: 18px;
    height: 18px;
    margin-left: 15px;
}
