.daily-updates-document {
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.daily-updates-document.container {
    max-width: none;
}

.daily-updates-document__section {
    margin-bottom: 36px;
}

.daily-updates-document__section:last-child {
    margin-bottom: 0;
}

.daily-updates-document__title {
    margin: 0 0 8px;
    color: #101828;
    font-family: Satoshi, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.daily-updates-document__description {
    margin: 0;
    color: #475467;
    font-family: Satoshi, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.daily-updates-document__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.daily-updates-document__meta-pickers {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.daily-updates-document__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    overflow: hidden;
}

.daily-updates-document__table th,
.daily-updates-document__table td {
    padding: 12px 14px;
    text-align: left;
    vertical-align: middle;
}

.daily-updates-document__table th:first-child,
.daily-updates-document__table td:first-child {
    padding-left: 20px;
}

.daily-updates-document__table th:last-child,
.daily-updates-document__table td:last-child {
    padding-right: 20px;
}

.daily-updates-document__table thead th {
    background: #e8f4fd;
    color: #475467;
    font-family: Satoshi, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.daily-updates-document__table tbody td {
    color: #475467;
    font-family: Satoshi, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    border-top: 1px solid #eaecf0;
}

.daily-updates-document__table tbody tr:nth-child(odd) td {
    background: #ffffff;
}

.daily-updates-document__table tbody tr:nth-child(even) td {
    background: #f2f2f7;
}

.daily-updates-document__download-head,
.daily-updates-document__download-cell {
    text-align: center;
    width: 90px;
}

.daily-updates-document__download-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.daily-updates-document__icon {
    width: 20px;
    height: 20px;
}

.daily-updates-document__download-text {
    color: #0c6a91;
    font-family: Satoshi, sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.daily-updates-document__picker-widget {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.daily-updates-document__picker-controls {
    justify-content: flex-end;
    gap: 8px;
}

.daily-updates-document__document-filter {
    width: 120px;
    height: 36px;
    padding: 6px 30px 6px 10px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23667085' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
    color: #344054;
    font-family: Satoshi, sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.daily-updates-document__picker-controls--with-document [data-dud-month-picker] {
    margin-left: auto;
}

@media (max-width: 992px) {
    .daily-updates-document__meta {
        flex-direction: column;
        align-items: stretch;
    }

    .daily-updates-document__meta-pickers,
    .daily-updates-document__picker-widget {
        align-items: flex-start;
    }

    .daily-updates-document__picker-controls {
        justify-content: flex-start;
        width: 100%;
        flex-wrap: wrap;
    }

    .daily-updates-document__document-filter {
        width: 120px;
    }
}