/* SVAEC PDF Viewer Frontend Styles */
.svaec-pdf-viewer {
    max-width: 1200px;
    font-family: Arial, sans-serif;
}

.fiscal-year-accordion {
    border: 9px solid #642c87;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #642c87;
}

.fiscal-year-header {
    background: #642c87;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    border-bottom: none;
    border-radius: 15px;
}

.fiscal-year-accordion.expanded {
    background: transparent;
}

.fiscal-year-accordion.expanded .fiscal-year-header {
    border-radius: 0px;
}

.fiscal-year-header h3 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
}

.accordion-arrow {
    font-size: 16px;
    color: #ffffff;
    transition: transform 0.2s;
    font-weight: bold;
}

.fiscal-year-content {
    display: none;
    padding: 0;
    background: transparent;
}

.month-section {
    padding: 15px 20px;
    background: transparent;
}

.month-header {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.pdfs-list {
    margin-left: 0;
}

.pdf-link {
    margin-bottom: 10px;
    line-height: 1.4;
}

.pdf-link a {
    color: #642c87;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: block;
}

.pdf-link a:hover {
    color: #54256e;
    text-decoration: underline;
}

.no-pdfs {
    padding: 20px;
    text-align: center;
    color: #666;
} 