/* ACEO Annual Reports CSS for OceanWP */

/* ===== HERO SECTION ===== */
.aceo-reports-hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(13, 40, 24, 0.05), rgba(26, 95, 35, 0.08));
    margin-bottom: 40px;
    border-bottom: 3px solid #D4AF37;
}

.aceo-reports-hero h1 {
    font-size: 3rem;
    color: #0d2818;
    margin-bottom: 20px;
    font-weight: 700;
}

.aceo-hero-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.aceo-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(26, 95, 35, 0.1);
}

.aceo-hero-stat {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A5F23;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #4A5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FILTER SECTION ===== */
.aceo-reports-filter {
    background: #F8FAF9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #E2E8F0;
}

.filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    color: #0d2818;
    margin-bottom: 8px;
}

.aceo-filter {
    padding: 12px 15px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.aceo-filter:focus {
    outline: none;
    border-color: #1A5F23;
    box-shadow: 0 0 0 3px rgba(26, 95, 35, 0.1);
}

#aceo-search-filter {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234A5568" width="18" height="18"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>');
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 18px;
    padding-left: 45px;
}

.aceo-reset-btn {
    background: transparent;
    color: #E53E3E;
    padding: 12px 25px;
    border: 2px solid #E53E3E;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: end;
}

.aceo-reset-btn:hover {
    background: #E53E3E;
    color: white;
}

/* ===== REPORTS GRID ===== */
.aceo-reports-grid-section {
    margin-bottom: 60px;
}

.aceo-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.aceo-loading {
    text-align: center;
    padding: 60px;
}

.aceo-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #E2E8F0;
    border-top-color: #1A5F23;
    border-radius: 50%;
    animation: aceo-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes aceo-spin {
    to { transform: rotate(360deg); }
}

.aceo-no-reports {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 12px;
    border: 2px dashed #E2E8F0;
    color: #4A5568;
    font-size: 1.1rem;
}

/* ===== REPORT CARD ===== */
.aceo-report-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.aceo-report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 95, 35, 0.15);
    border-color: #1A5F23;
}

.aceo-report-card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aceo-report-card-header {
    padding: 20px;
    background: linear-gradient(to right, #0d2818, #1A5F23);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aceo-report-year {
    font-size: 1.2rem;
    font-weight: 700;
}

.aceo-report-type {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.aceo-report-card-content {
    padding: 25px;
    flex: 1;
}

.aceo-report-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.aceo-report-title a {
    color: #0d2818;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aceo-report-title a:hover {
    color: #1A5F23;
}

.aceo-report-excerpt {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.aceo-report-card-footer {
    padding: 20px;
    border-top: 1px solid #E2E8F0;
    background: #F8FAF9;
}

.aceo-card-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.aceo-btn-download, .aceo-btn-view {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.aceo-btn-download {
    background: #1A5F23;
    color: white;
    border: 2px solid #1A5F23;
}

.aceo-btn-download:hover {
    background: #0d2818;
    border-color: #0d2818;
}

.aceo-btn-view {
    background: transparent;
    color: #1A5F23;
    border: 2px solid #1A5F23;
}

.aceo-btn-view:hover {
    background: #1A5F23;
    color: white;
}

.aceo-card-meta {
    text-align: center;
    color: #718096;
    font-size: 0.85rem;
}

/* ===== PAGINATION ===== */
.aceo-pagination {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

.aceo-load-more-btn {
    background: #1A5F23;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.aceo-load-more-btn:hover:not(:disabled) {
    background: #0d2818;
    transform: translateY(-2px);
}

.aceo-load-more-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.aceo-load-more-btn:disabled {
    background: #A0AEC0;
    cursor: not-allowed;
}

/* ===== FINANCIAL TRANSPARENCY ===== */
.aceo-financial-transparency {
    background: #F8FAF9;
    padding: 60px 0;
    margin-bottom: 60px;
    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;
}

.aceo-section-title {
    text-align: center;
    color: #0d2818;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.aceo-section-subtitle {
    text-align: center;
    color: #4A5568;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.aceo-transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.aceo-transparency-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.aceo-transparency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #1A5F23;
}

.aceo-transparency-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.aceo-transparency-card h3 {
    color: #0d2818;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.aceo-transparency-card p {
    color: #4A5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.aceo-financial-breakdown {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
}

.aceo-financial-breakdown h3 {
    text-align: center;
    color: #0d2818;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.aceo-breakdown-visual {
    display: flex;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.aceo-breakdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.aceo-breakdown-item:nth-child(1) {
    background: #1A5F23;
}

.aceo-breakdown-item:nth-child(2) {
    background: #D4AF37;
}

.aceo-breakdown-item:nth-child(3) {
    background: #E53E3E;
}

.aceo-breakdown-label {
    position: absolute;
    left: 10px;
    font-size: 0.9rem;
}

.aceo-breakdown-percent {
    position: absolute;
    right: 10px;
    font-size: 1.2rem;
}

.aceo-breakdown-note {
    text-align: center;
    color: #4A5568;
    font-style: italic;
    font-size: 0.95rem;
}

/* ===== COMPLIANCE SECTION ===== */
.aceo-compliance-section {
    padding: 60px 0;
}

.aceo-compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.aceo-compliance-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.aceo-compliance-card h3 {
    color: #1A5F23;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E2E8F0;
    font-size: 1.3rem;
}

.aceo-compliance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aceo-compliance-card li {
    padding: 10px 0;
    color: #4A5568;
    border-bottom: 1px solid #F1F1F1;
    position: relative;
    padding-left: 25px;
}

.aceo-compliance-card li:last-child {
    border-bottom: none;
}

.aceo-compliance-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1A5F23;
    font-weight: bold;
}

/* ===== CONTACT SECTION ===== */
.aceo-reports-contact {
    background: linear-gradient(135deg, #0d2818, #1A5F23);
    color: white;
    padding: 80px 0;
    border-radius: 20px;
    margin-top: 60px;
}

.aceo-contact-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.aceo-contact-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.aceo-contact-card > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.aceo-contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    text-align: left;
    margin-bottom: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.aceo-contact-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aceo-contact-item:last-child {
    border-bottom: none;
}

.aceo-contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #D4AF37;
}

.aceo-contact-note {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 30px;
}

/* ===== FINANCIAL WIDGET ===== */
.aceo-financial-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    max-width: 600px;
    margin: 0 auto;
}

.aceo-financial-widget h3 {
    text-align: center;
    color: #0d2818;
    margin-bottom: 30px;
}

.aceo-dollar-breakdown {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.aceo-breakdown-item {
    text-align: center;
    flex: 1;
    padding: 15px;
}

.aceo-breakdown-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1A5F23;
    margin-bottom: 5px;
}

.aceo-breakdown-label {
    font-size: 0.9rem;
    color: #4A5568;
}

.aceo-transparency-note {
    text-align: center;
    color: #4A5568;
    font-style: italic;
    font-size: 0.95rem;
}

/* ===== LATEST REPORTS ===== */
.aceo-latest-reports {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .aceo-reports-hero h1 {
        font-size: 2.2rem;
    }
    
    .aceo-hero-stats {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .filter-container {
        grid-template-columns: 1fr;
    }
    
    .aceo-reports-grid {
        grid-template-columns: 1fr;
    }
    
    .aceo-transparency-grid {
        grid-template-columns: 1fr;
    }
    
    .aceo-compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .aceo-contact-details {
        grid-template-columns: 1fr;
    }
    
    .aceo-dollar-breakdown {
        flex-direction: column;
    }
    
    .aceo-card-actions {
        flex-direction: column;
    }
    
    .aceo-btn-download,
    .aceo-btn-view {
        width: 100%;
    }
}

/* ===== OCEANWP COMPATIBILITY ===== */
.aceo-annual-reports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure proper spacing with OceanWP */
.content-area .aceo-annual-reports-container {
    width: 100%;
    padding: 0;
}

/* Single report page adjustments */
.single-annual_report .entry-content {
    max-width: 100% !important;
}

/* ===== MODAL STYLES ===== */
.aceo-modal-open {
    overflow: hidden;
}

.aceo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
    animation: aceo-modal-fade-in 0.3s ease;
}

.aceo-modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: aceo-modal-slide-up 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.aceo-modal-header {
    padding: 25px 30px;
    background: linear-gradient(to right, #0d2818, #1A5F23);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #D4AF37;
}

.aceo-modal-title {
    font-size: 1.8rem;
    margin: 0;
    color: white;
    flex: 1;
}

.aceo-modal-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aceo-modal-close:hover {
    transform: scale(1.1);
    color: #D4AF37;
}

.aceo-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.aceo-modal-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.aceo-modal-year {
    background: #1A5F23;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.aceo-modal-type {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.aceo-modal-date {
    color: #4A5568;
    font-size: 0.9rem;
    margin-left: auto;
}

.aceo-modal-content {
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 30px;
}

.aceo-modal-content h3 {
    color: #0d2818;
    margin-top: 25px;
    margin-bottom: 15px;
}

.aceo-modal-content p {
    margin-bottom: 15px;
}

.aceo-modal-excerpt {
    background: #F8FAF9;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #1A5F23;
}

.aceo-modal-excerpt h3 {
    color: #1A5F23;
    margin-top: 0;
    margin-bottom: 15px;
}

.aceo-modal-downloads {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E2E8F0;
}

.aceo-modal-downloads h3 {
    color: #0d2818;
    margin-bottom: 20px;
}

.aceo-download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.aceo-modal-btn-download {
    background: #1A5F23;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #1A5F23;
}

.aceo-modal-btn-download:hover {
    background: #0d2818;
    border-color: #0d2818;
    transform: translateY(-3px);
}

.aceo-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #E2E8F0;
    text-align: right;
}

.aceo-modal-btn-close {
    background: #4A5568;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aceo-modal-btn-close:hover {
    background: #2D3748;
    transform: translateY(-2px);
}

.aceo-modal-loading {
    text-align: center;
    color: white;
}

.aceo-modal-loading .aceo-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: aceo-spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Animations */
@keyframes aceo-modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes aceo-modal-slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .aceo-modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .aceo-modal-header {
        padding: 20px;
    }
    
    .aceo-modal-title {
        font-size: 1.5rem;
    }
    
    .aceo-modal-body {
        padding: 20px;
    }
    
    .aceo-modal-meta {
        flex-wrap: wrap;
    }
    
    .aceo-download-buttons {
        grid-template-columns: 1fr;
    }
}

/* ===== IMPROVED FILTER STYLES ===== */
.aceo-filter {
    min-width: 200px;
}

#aceo-year-filter, #aceo-type-filter {
    cursor: pointer;
}

/* ===== LOADING STATE IMPROVEMENTS ===== */
.aceo-loading {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
}

/* ===== EMPTY STATE ===== */
.aceo-no-reports {
    font-size: 1.1rem;
    color: #718096;
    padding: 60px 20px;
    text-align: center;
    background: white;
    border-radius: 12px;
    border: 2px dashed #E2E8F0;
}

/* ===== UNIVERSAL FILTER+GRID STYLES ===== */

/* Make sure loading indicator is properly positioned */
.aceo-reports-loading {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    margin: 20px 0;
}

/* Ensure buttons work correctly */
.aceo-load-more-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.aceo-load-more-btn:disabled {
    background: #A0AEC0;
    cursor: not-allowed;
}

/* Fix for multiple containers */
.aceo-filter-grid-container {
    margin-bottom: 40px;
}

/* Ensure filters target the right grid */
.aceo-reports-grid[data-container-id] {
    min-height: 200px;
}


/* ===== MODAL DOWNLOAD BUTTON STYLES ===== */

/* Prominent download section */
.aceo-modal-download-main {
    background: linear-gradient(135deg, rgba(26, 95, 35, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid rgba(26, 95, 35, 0.2);
}

.aceo-download-main-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.aceo-download-icon {
    font-size: 3rem;
    background: rgba(26, 95, 35, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A5F23;
    flex-shrink: 0;
}

.aceo-download-info {
    flex: 1;
}

.aceo-download-info h3 {
    color: #0d2818;
    margin: 0 0 8px 0;
    font-size: 1.4rem;
}

.aceo-download-info p {
    color: #4A5568;
    margin: 0;
    font-size: 0.95rem;
}

.aceo-modal-btn-download-main {
    background: #1A5F23;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #1A5F23;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.aceo-modal-btn-download-main:hover {
    background: #0d2818;
    border-color: #0d2818;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 35, 0.2);
}

.aceo-download-size {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(26, 95, 35, 0.1);
}

.aceo-file-info {
    color: #4A5568;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aceo-file-action {
    color: #1A5F23;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Additional download options */
.aceo-modal-downloads {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E2E8F0;
}

.aceo-modal-downloads h3 {
    color: #0d2818;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.aceo-download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.aceo-modal-btn-download {
    background: #1A5F23;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #1A5F23;
}

.aceo-modal-btn-download:hover {
    background: #0d2818;
    border-color: #0d2818;
    transform: translateY(-3px);
}

/* No downloads message */
.aceo-no-downloads {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    background: #F8FAF9;
    border-radius: 8px;
    color: #718096;
    font-style: italic;
}

/* Responsive download button */
@media (max-width: 768px) {
    .aceo-download-main-content {
        flex-direction: column;
        text-align: center;
    }
    
    .aceo-download-icon {
        margin: 0 auto;
    }
    
    .aceo-modal-btn-download-main {
        width: 100%;
        justify-content: center;
    }
    
    .aceo-download-size {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .aceo-download-buttons {
        grid-template-columns: 1fr;
    }
}


.aceo-modal-btn-print {
    background: #4A5568;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #4A5568;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.aceo-modal-btn-print:hover {
    background: #2D3748;
    border-color: #2D3748;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .aceo-modal-btn-print {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
    }
}