body { overflow-x: hidden; font-family: 'Raleway', sans-serif; }

/* style.css sets margin-top: -100px on .navbar for the scroll-hide effect on the main page;
   override it here since reports page has no scroll-hide behaviour */
.navbar { margin-top: 0 !important; }

/* style.css sets large padding/height on nav items inside @media (min-width: 768px)
   for the hero animation on the main page — reset to compact values for reports page */
.navbar-nav .nav-link {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
.navbar-brand img {
    height: 35px !important;
    padding-top: 0 !important;
}

/* Page header banner */
.reports-header {
    background: url('../images/home.jpg') center / cover no-repeat;
    position: relative;
    padding-top: 110px;
    padding-bottom: 70px;
    text-align: center;
}
.reports-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(33, 33, 33, 0.75);
}
.reports-header .container { position: relative; }
.reports-header h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}
.reports-header .language {
    position: absolute;
    top: -20px;
    right: 0;
    color: #b5b5b5;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
}
.reports-header .language a { color: #fff; }

/* Section */
.reports-section {
    background: #f1f1f1;
    padding: 70px 0 90px;
}

/* Group heading */
.doc-group-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid #0a6609;
    padding-left: 14px;
    margin-bottom: 28px;
}
.doc-group { margin-bottom: 50px; }

/* Document cards */
.doc-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}
.doc-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
    transform: translateY(-4px);
}

.doc-card-preview {
    background: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 16px;
    min-height: 230px;
}
.doc-card-preview canvas {
    max-height: 200px;
    width: auto;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    background: #fff;
}
.pdf-icon-fallback {
    color: #0a6609;
    font-size: 64px;
    opacity: 0.6;
}
.pdf-loading {
    color: #aaa;
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}
.pdf-loading i { display: block; font-size: 40px; margin-bottom: 8px; color: #0a6609; opacity: 0.4; }

.doc-card-body {
    padding: 18px 18px 10px;
    flex: 1;
}
.doc-card-body h4 {
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.45;
}
.doc-card-body p {
    color: #777;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.doc-card-footer {
    padding: 14px 18px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.doc-card-meta {
    font-size: 11px;
    color: #aaa;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap;
    flex: 1 1 auto;
}
.btn-download,
.btn-download:visited {
    background: #0a6609;
    border: 1px solid #0a6609;
    color: #fff;
    border-radius: 3px;
    padding: 8px 18px;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, border-color 0.3s;
    letter-spacing: 0.5px;
}
.btn-download:hover {
    background: #3d4d35;
    border-color: #3d4d35;
    color: #fff;
    text-decoration: none;
}
.btn-download i { margin-right: 5px; }
.btn-download { white-space: nowrap; margin-left: auto; flex-shrink: 0; }
