#sectionDownload {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
}

.sectionDownloadContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.downloadArea {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
}

.downloadAreaSelection{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.dropdown-toggle{
    width: 100%;
}

#amount {
    text-align: center;
    background-color: var(--clrBaseBright);
    border-radius: var(--stdRadius);
    padding: 8px 12px;
    border: 2px solid var(--clrGray);
}

.btnDownload{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pdfImage {
    width: 30px;
    height: 30px;
}

.btn {
    background-color: var(--clrHighlight2);
    font-size: 20px;
    padding: var(--stdPadding);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.disabled {
    pointer-events: none;
    color: gray; /* Optional: ausgegraut darstellen */
    text-decoration: none;
    cursor: default;
  }