.laporan-hero-section {
    background-color: #f8fafc;
    padding: 140px 0 30px 0;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid #e2e8f0;
}
.laporan-cards-section {
    background-color: #ffffff;
    padding: 30px 0 80px 0;
    font-family: 'Inter', sans-serif;
}
.laporan-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary, #1e3a8a);
    line-height: 1.3;
    margin-bottom: 24px;
}
.laporan-header p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}
.laporan-filter-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 0px;
}
.laporan-filter-bar .search-input {
    flex: 1;
    max-width: 400px;
    position: relative;
}
.laporan-filter-bar .search-input i, .laporan-filter-bar .search-input svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    width: 18px;
    height: 18px;
}
.laporan-filter-bar .search-input input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
    background: #fff;
}
.laporan-filter-bar .search-input input:focus {
    border-color: var(--primary, #1e3a8a);
}
.laporan-filter-bar .year-select {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fff;
    min-width: 150px;
    outline: none;
    cursor: pointer;
}

.laporan-card {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.laporan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}
.laporan-card.active {
    background: var(--primary, #1e3a8a);
    color: #ffffff;
}

.laporan-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eef2ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.laporan-card.active .laporan-card-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.laporan-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary, #1e3a8a);
}
.laporan-card.active h3 {
    color: #ffffff;
}

.laporan-card p {
    font-family: 'Inter', sans-serif;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.laporan-card.active p {
    color: rgba(255, 255, 255, 0.85);
}

.laporan-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: auto;
}
.laporan-card.active .laporan-link {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    text-transform: none;
    letter-spacing: 0;
    width: fit-content;
    transition: background 0.3s ease;
}
.laporan-card.active .laporan-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    text-decoration: none;
}

.laporan-link i, .laporan-link svg {
    transition: transform 0.3s ease;
}
.laporan-card:hover:not(.active) .laporan-link svg {
    transform: translateX(4px);
}
.laporan-card.active:hover .laporan-link svg {
    transform: translateX(4px) translateY(-4px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .laporan-page-wrapper {
        padding: 40px 0;
    }
    .laporan-header h1 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }
    .laporan-header p {
        font-size: 1rem;
        margin-bottom: 24px;
        max-width: 100%;
    }
    .laporan-filter-bar {
        flex-direction: column;
        gap: 12px;
    }
    .laporan-filter-bar .search-input {
        max-width: 100%;
    }
    .laporan-card {
        padding: 24px;
    }
    .laporan-card h3 {
        font-size: 1.5rem;
    }
}
/* Laporan Detail Page Styles */
.laporan-detail-page {
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}
.laporan-breadcrumb {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 24px;
}
.laporan-breadcrumb a {
    color: var(--primary, #1e3a8a);
    text-decoration: none;
    font-weight: 500;
}
.laporan-breadcrumb a:hover {
    text-decoration: underline;
}
.laporan-breadcrumb span {
    margin: 0 8px;
    color: #94a3b8;
}
.laporan-detail-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
.laporan-detail-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary, #1e3a8a);
    margin-bottom: 16px;
    line-height: 1.3;
}
.laporan-meta {
    display: flex;
    gap: 24px;
    color: #64748b;
    font-size: 0.875rem;
    align-items: center;
}
.laporan-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.laporan-meta-item svg {
    width: 16px;
    height: 16px;
}
.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid var(--primary, #1e3a8a);
    border-radius: 999px;
    color: var(--primary, #1e3a8a);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary, #1e3a8a);
    color: #fff;
    text-decoration: none;
}
.pdf-viewer-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
}
/* Specifically hide Firefox internal PDF.js toolbar */
@supports (-moz-appearance: none) {
    .hide-ff-toolbar {
        margin-top: -36px !important;
        height: calc(100% + 38px) !important;
    }
}
.pdf-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
}
.pdf-toolbar-group {
    display: flex;
    align-items: center;
    gap: 16px;
}
.pdf-toolbar button {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.2s;
}
.pdf-toolbar button:hover {
    color: var(--primary, #1e3a8a);
}
.pdf-toolbar button svg {
    width: 18px;
    height: 18px;
}
.pdf-content-placeholder {
    padding: 40px;
    background: #f8fafc;
    min-height: 600px;
}
.pdf-document {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 700px;
    padding: 60px 40px;
    border: 1px solid #e2e8f0;
    margin: 0 auto;
}
.skeleton-line {
    height: 14px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 16px;
}
.skeleton-line.title {
    height: 24px;
    width: 40%;
    margin-bottom: 40px;
}
.skeleton-line.short {
    width: 60%;
}
.skeleton-box {
    height: 250px;
    background: #e2e8f0;
    border-radius: 8px;
    margin: 40px 0;
}
.laporan-summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}
.laporan-summary-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.laporan-summary-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}
.laporan-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e2e8f0;
}
.laporan-summary-list li {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.875rem;
}
.laporan-summary-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.laporan-summary-list .label {
    color: #64748b;
}
.laporan-summary-list .value {
    font-weight: 600;
    color: var(--primary, #1e3a8a);
}
.back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: 24px;
}
.back-to-list:hover {
    text-decoration: underline;
}
.back-to-list svg {
    width: 16px;
    height: 16px;
}
@media (max-width: 992px) {
    .laporan-detail-header-wrapper {
        flex-direction: column;
        gap: 24px;
    }
}
