.pdf-download-icon {
    width: 18px;
    height: 18px;
    padding-bottom: 6px;
}

.select-pdf-month {
    font-family: inherit;
    padding: 6px 18px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: var(--textContrast);
    border: none;
    background-color: var(--buttonSecondary);
    text-decoration: none;
    border-radius: 29px;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 29px;
    gap: 8px;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-shadow: 0 0 0 var(--box-shadow-opaque);
    -moz-box-shadow: 0 0 0 var(--box-shadow-opaque);
    box-shadow: 0 0 0 var(--box-shadow-opaque);
}

.select-pdf-month:hover {
    background-color: var(--buttonFloating);
}

.select-pdf-dropdown li {
    position: relative;
    cursor: pointer;
    align-items: center;
    border-radius: 12px;
    margin-left: 10px;
    margin-right: 10px;
}

.select-pdf-dropdown li:hover {
    background-color: var(--surfaceNeutralDim2);
}

.download-pdf-link {
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--textPrimary);
    text-decoration: none;
    display: block;
    padding: 10px 20px;
}

.download-pdf-link:hover {
    font-weight: 500;
}

.selected-pdf-value {
    padding-top: 8px;
    padding-bottom: 8px;
}

.select-pdf-outer {
    overflow: hidden;
}

#select-pdf-dropdown {
    position: absolute;
    list-style: none;
    width: 167px;
    text-align: center;
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-shadow: 0 0 10px var(--box-shadow-opaque);
    -moz-box-shadow: 0 0 10px var(--box-shadow-opaque);
    box-shadow: 0 0 10px var(--box-shadow-opaque);
    background-color: var(--surfaceNeutralDefault);
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    visibility: hidden;
    z-index: 1000;
}

.pdf-download-text {
    color: var(--textContrast);
}

.overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
}
.overlay[hidden] {
    display: none;
}

/* Modal */
.modal {
    width: 620px;
    max-height: 50%;
    background: var(--surfaceNeutralDefault);
    border-radius: 20px;
    box-shadow: 0 1px 8px 2px rgba(0, 0, 0, 0.14);
    padding: 32px 32px 48px 32px;
    overflow: clip;
}

.modal__head {
    display: flex;
    padding-bottom: 24px;
    flex-direction: row-reverse;
}

.modal__close {
    appearance: none;
    border: 0;
    background: transparent;
    line-height: 1;
    cursor: pointer;
    border-radius: 0;
    box-shadow: 0 0 0 var(--box-shadow-opaque);
    -moz-box-shadow: 0 0 0 var(--box-shadow-opaque);
    -webkit-box-shadow: 0 0 0 var(--box-shadow-opaque);
    padding: 0;
}
.modal__close:hover {
    background: #f2f2f2;
}
.modal__close:focus-visible {
    outline: 3px solid #6aa9ff;
    outline-offset: 3px;
}

.modal__body {
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.modal__title {
    color: var(--textPrimary);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.modal__info {
    color: var(--textPrimary);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.muted {
    color: #555;
}
