{
    type: uploaded file
    fileName: federal.css
    fullContent:
    /* =========================================
       FEDERAL PROFESSIONAL THEME CSS
       Solid navy header, no staff banner
       ========================================= */
    
    /* RESET & BASE */
    .theme-federal * {
        box-sizing: border-box;
    }
    
    .theme-federal {
        font-family: var(--font-body);
        color: var(--color-text);
        background: #F8FAFC;
        margin: 0;
        padding: 0;
        
        /* Global Theme Variables */
        --color-primary: #0F172A;    /* Dark Navy */
        --color-secondary: #334155;  /* Slate */
        --color-accent: #0284C7;     /* Professional Blue */
        --color-accent-hover: #0369A1;
        --color-text: #0F172A;
        --color-text-muted: #64748B;
        --bg-body: #F8FAFC;
        --bg-surface: #FFFFFF;
        --border-light: #E2E8F0;
        
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    }
    
    /* PAGE WRAPPER */
    .theme-federal .page-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    /* TOP NAVIGATION BAR - Solid Navy Blue (NO watermark) */
    .theme-federal .site-header {
        background: #1e3a5f; /* Solid navy blue */
        color: white;
        padding: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .theme-federal .site-header .header-watermark {
        display: none !important; /* Completely remove watermark from header */
    }
    
    .theme-federal .header-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 16px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
        background: transparent; /* Ensure no background image shows through */
    }
    
    .theme-federal .site-title {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        margin: 0;
        font-weight: 600;
        letter-spacing: 0.3px;
    }
    
    .theme-federal .site-tagline {
        display: none; /* Hidden in top header */
    }
    
    /* HERO SECTION - Large banner below header with background image */
    .theme-federal .hero-section {
        display: block;
        background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
        color: white;
        padding: 80px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .theme-federal .hero-section .header-watermark {
        display: block; /* Show background image ONLY in hero section */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        filter: grayscale(100%) brightness(1.2);
    }
    
    .theme-federal .hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .theme-federal .hero-title {
        font-size: 3rem;
        font-family: var(--font-heading);
        margin: 0 0 20px 0;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .theme-federal .hero-subtitle {
        font-size: 1.3rem;
        margin: 0;
        opacity: 0.95;
        line-height: 1.6;
    }
    
    /* NO SIDEBAR - Full width layout */
    .theme-federal .main-layout {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        padding: 40px;
    }
    
    .theme-federal .sidebar {
        display: none; /* Federal theme doesn't use sidebar */
    }
    
    /* MAIN CONTENT */
    .theme-federal .main-content {
        width: 100%;
    }
    
    /* STATS BAR */
    .theme-federal .stats-bar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
        padding: 30px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        border: 1px solid #E2E8F0;
    }
    
    .theme-federal .stat-card {
        text-align: center;
        padding: 20px;
        border-right: 1px solid #E2E8F0;
    }
    
    .theme-federal .stat-card:last-child {
        border-right: none;
    }
    
    .theme-federal .stat-value {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--color-primary);
        margin-bottom: 8px;
        font-family: 'Inter', sans-serif;
    }
    
    .theme-federal .stat-label {
        display: block;
        font-size: 0.95rem;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }
    
    /* HIDE STAFF ACCESS BANNER */
    .theme-federal .staff-access-banner {
        display: none !important; /* Remove the orange banner completely */
    }
    
    .theme-federal .content-section {
        margin-bottom: 60px;
    }
    
    .theme-federal .content-divider {
        border: none;
        height: 1px;
        background: #E2E8F0;
        margin: 50px 0;
    }
    
    .theme-federal .section-heading {
        font-size: 2rem;
        font-family: var(--font-heading);
        color: var(--color-primary);
        margin: 0 0 30px 0;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .theme-federal .section-heading::before {
        content: '';
        display: block;
        width: 4px;
        height: 32px;
        background: var(--color-accent);
        border-radius: 2px;
    }
    
    .theme-federal .section-subtext {
        color: #64748B;
        margin: -20px 0 30px 0;
        font-size: 1.05rem;
    }
    
    /* SEARCH BOX (Homepage) */
    .theme-federal .search-box {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border: 1px solid #E2E8F0;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .theme-federal .search-box h3 {
        font-size: 1.5rem;
        margin: 0 0 24px 0;
        color: var(--color-primary);
        text-align: center;
        font-weight: 600;
    }
    
    .theme-federal .search-form {
        display: flex;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .theme-federal .search-form input[type="text"] {
        flex: 1;
        padding: 16px 20px;
        border: 2px solid #E2E8F0;
        border-radius: 8px;
        font-size: 1rem;
        font-family: var(--font-body);
        transition: all 0.2s ease;
    }
    
    .theme-federal .search-form input[type="text"]:focus {
        outline: none;
        border-color: var(--color-accent);
        box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    }
    
    .theme-federal .search-form button {
        padding: 16px 40px;
        background: var(--color-accent);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: var(--font-body);
        font-size: 1rem;
    }
    
    .theme-federal .search-form button:hover {
        background: var(--color-primary);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    }
    
    .theme-federal .search-links {
        font-size: 0.95rem;
        color: #64748B;
        text-align: center;
    }
    
    .theme-federal .search-links span {
        margin-right: 8px;
        font-weight: 500;
    }
    
    .theme-federal .search-links a {
        color: var(--color-accent);
        text-decoration: none;
        margin: 0 12px;
        transition: color 0.2s ease;
        font-weight: 500;
    }
    
    .theme-federal .search-links a:hover {
        color: var(--color-primary);
        text-decoration: underline;
    }
    
    /* WELCOME TEXT */
    .theme-federal .welcome-text {
        background: white;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        border-left: 4px solid var(--color-accent);
        margin-bottom: 50px;
    }
    
    .theme-federal .welcome-text h2 {
        font-size: 2rem;
        font-family: var(--font-heading);
        color: var(--color-primary);
        margin: 0 0 20px 0;
        font-weight: 700;
    }
    
    .theme-federal .welcome-text p {
        line-height: 1.8;
        color: #475569;
        margin: 0;
        font-size: 1.1rem;
    }
    
    /* COLLECTIONS GRID (Homepage) */
    .theme-federal .collections-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .theme-federal .collection-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border: 1px solid #E2E8F0;
    }
    
    .theme-federal .collection-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        border-color: var(--color-accent);
    }
    
    .theme-federal .card-frame {
        position: relative;
        padding-top: 65%;
        background: #F1F5F9;
        overflow: hidden;
    }
    
    .theme-federal .card-frame a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .theme-federal .card-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .theme-federal .collection-card:hover .card-frame img {
        transform: scale(1.05);
    }
    
    .theme-federal .placeholder-icon {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2.5rem;
    }
    
    .theme-federal .card-info {
        padding: 20px;
    }
    
    .theme-federal .card-info h4 {
        margin: 0 0 8px 0;
        font-size: 1.2rem;
        font-family: var(--font-heading);
        font-weight: 600;
    }
    
    .theme-federal .card-info a {
        color: var(--color-primary);
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .theme-federal .card-info a:hover {
        color: var(--color-accent);
    }
    
    .theme-federal .meta-text {
        font-size: 0.9rem;
        color: #64748B;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .theme-federal .meta-text::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        background: var(--color-accent);
        border-radius: 50%;
    }
    
    /* MAP SECTION */
    .theme-federal .map-wrapper {
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        border: 1px solid #E2E8F0;
    }
    
    .theme-federal .map-toolbar {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #E2E8F0;
    }
    
    .theme-federal .category-toggles {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }
    
    .theme-federal .btn-text {
        background: white;
        border: 1px solid #E2E8F0;
        padding: 8px 16px;
        border-radius: 6px;
        color: #475569;
        cursor: pointer;
        font-family: var(--font-body);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s ease;
        font-weight: 500;
    }
    
    .theme-federal .btn-text:hover {
        background: #F8FAFC;
        border-color: var(--color-accent);
        color: var(--color-accent);
    }
    
    .theme-federal .map-legend-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 16px;
        background: #F8FAFC;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        border: 1px solid transparent;
    }
    
    .theme-federal .map-legend-item:hover {
        background: white;
        border-color: #E2E8F0;
    }
    
    .theme-federal .map-legend-item input[type="checkbox"] {
        cursor: pointer;
        width: 16px;
        height: 16px;
    }
    
    .theme-federal .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }
    
    .theme-federal .map-display {
        width: 100%;
        height: 600px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    /* MAP POPUP */
    .theme-federal .map-popup {
        font-family: var(--font-body);
        min-width: 200px;
    }
    
    .theme-federal .popup-image {
        width: 100%;
        height: 120px;
        overflow: hidden;
        margin-bottom: 12px;
        border-radius: 6px;
    }
    
    .theme-federal .popup-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .theme-federal .popup-content {
        padding: 8px;
    }
    
    .theme-federal .popup-title {
        display: block;
        margin-bottom: 8px;
        color: #0F172A;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .theme-federal .popup-category {
        font-size: 13px;
        color: #64748B;
        margin-bottom: 10px;
    }
    
    .theme-federal .popup-link {
        color: var(--color-accent);
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
    }
    
    .theme-federal .popup-link:hover {
        text-decoration: underline;
    }
    
    /* RECORDS TABLE (Homepage) */
    .theme-federal .records-table {
        width: 100%;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        border: 1px solid #E2E8F0;
        border-collapse: separate;
        border-spacing: 0;
    }
    
    .theme-federal .records-table thead {
        background: #F8FAFC;
        border-bottom: 2px solid #E2E8F0;
    }
    
    .theme-federal .records-table th {
        padding: 16px 20px;
        text-align: left;
        font-weight: 600;
        font-size: 0.85rem;
        color: #475569;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .theme-federal .records-table tbody tr {
        border-bottom: 1px solid #F1F5F9;
        transition: background 0.2s ease;
    }
    
    .theme-federal .records-table tbody tr:hover {
        background: #F8FAFC;
    }
    
    .theme-federal .records-table td {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .theme-federal .t-date {
        color: #64748B;
        font-weight: 500;
    }
    
    .theme-federal .t-title {
        color: var(--color-primary);
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
    }
    
    .theme-federal .t-title i {
        color: var(--color-accent);
        font-size: 1.1rem;
    }
    
    .theme-federal .t-col {
        color: #64748B;
    }
    
    /* HOMEPAGE THUMBNAIL FIX */
    .theme-federal .t-col-thumb {
        width: 80px;
        padding: 10px !important;
    }
    
    .theme-federal .thumb-img {
        width: 64px !important;
        height: 64px !important;
        object-fit: cover;
        border-radius: 4px;
        display: block;
    }
    
    .theme-federal .thumb-placeholder {
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F1F5F9;
        border-radius: 4px;
        color: #CBD5E1;
        font-size: 24px;
    }
    
    .theme-federal .btn-small {
        display: inline-block;
        padding: 8px 20px;
        background: var(--color-accent);
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    
    .theme-federal .btn-small:hover {
        background: var(--color-primary);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(14, 165, 233, 0.2);
    }
    
    /* EMPTY MESSAGE */
    .theme-federal .empty-message {
        text-align: center;
        padding: 60px 20px;
        color: #94A3B8;
    }
    
    /* FOOTER */
    .theme-federal .site-footer {
        background: var(--color-primary);
        color: white;
        text-align: center;
        padding: 40px 20px;
        margin-top: auto;
    }
    
    .theme-federal .site-footer p {
        margin: 8px 0;
        opacity: 0.9;
    }
    
    .theme-federal .powered-by {
        font-size: 0.85rem;
        opacity: 0.7;
    }
    
    .theme-federal .powered-by a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }
    
    .theme-federal .powered-by a:hover {
        text-decoration: underline;
    }
    
    /* =========================================
       SUB-PAGE STYLES (Public Search, Category, Detail)
       ========================================= */
    
    /* SEARCH PAGE */
    .theme-federal .search-page-container { 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 40px 20px;
    }
    
    .theme-federal .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 24px;
        margin: 40px 0;
    }
    
    .theme-federal .category-card {
        position: relative;
        aspect-ratio: 1/1;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        transition: transform 0.2s, box-shadow 0.3s;
        background: #0F172A;
    }
    
    .theme-federal .category-card:hover { 
        transform: translateY(-4px); 
        box-shadow: 0 12px 24px rgba(0,0,0,0.15); 
    }
    
    .theme-federal .category-bg { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        transition: transform 0.3s; 
        opacity: 0.8; 
    }
    
    .theme-federal .category-card:hover .category-bg { 
        transform: scale(1.05); 
        opacity: 0.6; 
    }
    
    .theme-federal .category-overlay {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        background: linear-gradient(to top, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0));
        padding: 40px 16px 16px;
        color: white;
    }
    
    .theme-federal .category-name { 
        font-weight: 600; 
        font-size: 18px; 
        margin-bottom: 4px; 
        display: flex; 
        align-items: center; 
        gap: 8px; 
    }
    
    .theme-federal .category-count { 
        font-size: 13px; 
        opacity: 0.8; 
    }
    
    .theme-federal .results-header {
        margin: 40px 0 20px 0;
        padding-bottom: 12px;
        border-bottom: 2px solid #E2E8F0;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
    
    .theme-federal .results-header h3 { 
        color: #0F172A; 
        font-size: 20px; 
        font-weight: 600;
    }
    
    .theme-federal .record-card {
        display: flex;
        background: white;
        margin-bottom: 16px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        transition: box-shadow 0.2s, transform 0.2s;
        text-decoration: none;
        color: inherit;
        border: 1px solid #E2E8F0;
        border-left: 4px solid #0284C7;
    }
    
    .theme-federal .record-card:hover { 
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); 
        transform: translateY(-2px); 
        border-color: #0284C7; 
    }
    
    .theme-federal .record-card-image { 
        width: 220px; 
        min-width: 220px; 
        background: #F1F5F9; 
        position: relative; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        border-right: 1px solid #E2E8F0; 
        overflow: hidden; 
    }
    
    .theme-federal .record-card-image img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        transition: transform 0.3s ease; 
    }
    
    .theme-federal .record-card:hover .record-card-image img {
        transform: scale(1.05);
    }
    
    .theme-federal .record-content { 
        padding: 24px; 
        flex: 1; 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
    }
    
    .theme-federal .record-title { 
        font-size: 20px; 
        font-weight: 600; 
        color: #0F172A; 
        margin-bottom: 8px; 
        text-decoration: none; 
        line-height: 1.3; 
    }
    
    .theme-federal .badges-row { 
        display: flex; 
        gap: 8px; 
        flex-wrap: wrap; 
        margin-bottom: 12px; 
    }
    
    .theme-federal .badge { 
        display: inline-block; 
        padding: 2px 8px; 
        border-radius: 4px; 
        font-size: 11px; 
        font-weight: 600; 
        text-transform: uppercase; 
        letter-spacing: 0.5px; 
    }
    
    .theme-federal .badge.cat { background: #E0F2FE; color: #0369A1; }
    .theme-federal .badge.format { background: #F1F5F9; color: #475569; border: 1px solid #E2E8F0; }
    .theme-federal .badge.location { background: #F0F9FF; color: #0369A1; border: 1px solid #E0F2FE; }
    
    .theme-federal .record-meta { 
        font-size: 13px; 
        color: #64748B; 
        margin-bottom: 12px; 
        display: flex; 
        align-items: center; 
        gap: 12px; 
        flex-wrap: wrap; 
    }
    
    .theme-federal .meta-item { display: flex; align-items: center; gap: 6px; }
    
    .theme-federal .record-desc { 
        font-size: 15px; 
        color: #0F172A; 
        line-height: 1.6; 
        display: -webkit-box; 
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical; 
        overflow: hidden; 
    }
    
    .theme-federal .stats-banner { 
        text-align: center; 
        margin: 30px 0; 
        padding: 16px; 
        background: white; 
        border-radius: 8px; 
        box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); 
        border: 1px solid #E2E8F0; 
        font-size: 14px; 
        color: #64748B; 
    }
    
    .theme-federal .stats-banner strong { color: #0F172A; }
    
    /* CATEGORY VIEW PAGE */
    .theme-federal .container { 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 40px 20px; 
    }
    
    .theme-federal .back-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #64748B;
        text-decoration: none;
        font-weight: 500;
        margin-bottom: 24px;
        font-size: 14px;
        transition: color 0.2s ease;
    }
    
    .theme-federal .back-link:hover { color: #0284C7; }
    
    .theme-federal .category-header {
        background: white;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        margin-bottom: 32px;
        border: 1px solid #E2E8F0;
        border-left-width: 6px;
        border-left-style: solid;
    }
    
    .theme-federal .category-title {
        font-size: 32px;
        margin: 0 0 12px 0;
        color: #0F172A;
        display: flex;
        align-items: center;
        gap: 16px;
        font-weight: 700;
    }
    
    .theme-federal .category-icon { font-size: 40px; }
    
    .theme-federal .category-desc {
        font-size: 16px;
        color: #64748B;
        line-height: 1.6;
        margin: 0;
        max-width: 800px;
    }
    
    .theme-federal .category-meta {
        margin-top: 16px; 
        font-weight: 500; 
        font-size: 14px; 
        color: #0F172A; 
        display: flex; 
        align-items: center; 
        gap: 8px;
        padding-top: 16px;
        border-top: 1px solid #E2E8F0;
    }
    
    .theme-federal .records-grid { 
        display: flex; 
        flex-direction: column; 
        gap: 16px; 
    }
    
    /* RECORD DETAIL PAGE */
    .theme-federal .record-container { 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 0 20px 60px; 
    }
    
    .theme-federal .detail-nav { 
        padding: 0 0 24px 0; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-top: -20px; 
        position: relative; 
        z-index: 10; 
    }
    
    .theme-federal .new-search-btn { 
        display: inline-flex; 
        align-items: center; 
        gap: 8px; 
        padding: 10px 16px; 
        background: #0284C7; 
        color: white; 
        text-decoration: none; 
        font-weight: 600; 
        font-size: 14px; 
        border-radius: 6px; 
    }
    
    .theme-federal .viewer-section { 
        background: #1e293b; 
        border-radius: 8px; 
        overflow: hidden; 
        margin-bottom: 40px; 
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); 
    }
    
    .theme-federal .viewer-stage { 
        height: 600px; 
        width: 100%; 
        position: relative; 
        background: #0f172a; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
    }
    
    .theme-federal #openseadragon-viewer { 
        width: 100%; 
        height: 100%; 
        background: #0f172a; 
    }
    
    .theme-federal .iframe-viewer { 
        width: 100%; 
        height: 100%; 
        border: none; 
        display: none; 
    }
    
    .theme-federal .viewer-empty { 
        color: #94a3b8; 
        text-align: center; 
    }
    
    .theme-federal .viewer-empty i { 
        font-size: 48px; 
        margin-bottom: 16px; 
        opacity: 0.5; 
    }
    
    .theme-federal .filmstrip { 
        display: flex; 
        gap: 12px; 
        padding: 16px; 
        background: #1e293b; 
        border-top: 1px solid #334155; 
        overflow-x: auto; 
    }
    
    .theme-federal .thumbnail-card { 
        min-width: 80px; 
        width: 80px; 
        height: 80px; 
        border-radius: 4px; 
        cursor: pointer; 
        position: relative; 
        border: 2px solid transparent; 
        overflow: hidden; 
        background: #334155; 
    }
    
    .theme-federal .thumbnail-card.active { 
        border-color: #0284C7; 
    }
    
    .theme-federal .thumbnail-img { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        opacity: 0.7; 
    }
    
    .theme-federal .thumbnail-card.active .thumbnail-img { 
        opacity: 1; 
    }
    
    .theme-federal .record-layout { 
        display: grid; 
        grid-template-columns: 2fr 1fr; 
        gap: 60px; 
    }
    
    .theme-federal .main-info h1 { 
        font-size: 32px; 
        margin: 0 0 16px 0; 
        color: #0F172A; 
        line-height: 1.2; 
        font-weight: 700; 
    }
    
    .theme-federal .description-content { 
        font-size: 17px; 
        line-height: 1.7; 
        color: #0F172A; 
        margin-bottom: 40px; 
    }
    
    .theme-federal .meta-section { 
        margin-bottom: 32px; 
    }
    
    .theme-federal .section-header { 
        font-size: 14px; 
        font-weight: 700; 
        text-transform: uppercase; 
        letter-spacing: 0.5px; 
        color: #64748B; 
        margin-bottom: 16px; 
        display: flex; 
        align-items: center; 
        gap: 8px; 
    }
    
    .theme-federal .meta-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
        gap: 20px; 
    }
    
    .theme-federal .meta-label { 
        font-size: 12px; 
        text-transform: uppercase; 
        color: #64748B; 
        font-weight: 600; 
    }
    
    .theme-federal .meta-value { 
        font-size: 15px; 
        color: #0F172A; 
        font-weight: 500; 
    }
    
    .theme-federal .sidebar-card { 
        background: white; 
        border: 1px solid #E2E8F0; 
        border-radius: 8px; 
        padding: 24px; 
        margin-bottom: 24px; 
        box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); 
    }
    
    .theme-federal .tool-btn { 
        width: 100%; 
        padding: 12px 16px; 
        margin-bottom: 10px; 
        border-radius: 6px; 
        font-weight: 600; 
        font-size: 14px; 
        cursor: pointer; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        gap: 10px; 
        text-decoration: none; 
    }
    
    .theme-federal .tool-btn.primary { 
        background: #0284C7; 
        color: white; 
        border: none; 
    }
    
    .theme-federal .tool-btn.secondary { 
        background: #F8FAFC; 
        color: #0F172A; 
        border: 1px solid #E2E8F0; 
    }
    
    .theme-federal .map-thumbnail { 
        margin-top: 12px; 
        border-radius: 6px; 
        overflow: hidden; 
        position: relative; 
    }
    
    .theme-federal .map-thumbnail img { 
        width: 100%; 
        display: block; 
    }
    
    .theme-federal .map-coordinates { 
        position: absolute; 
        bottom: 8px; 
        left: 8px; 
        background: rgba(15, 23, 42, 0.85); 
        color: white; 
        padding: 6px 12px; 
        border-radius: 4px; 
        font-size: 12px; 
        font-weight: 600; 
    }
    
    .theme-federal .citation-box { 
        background: #F8FAFC; 
        border: 1px solid #E2E8F0; 
        border-left: 3px solid #0284C7; 
        padding: 14px; 
        font-size: 13px; 
        font-family: 'Georgia', serif; 
    }
    
    /* RESPONSIVE */
    @media (max-width: 900px) {
        .theme-federal .main-layout {
            padding: 20px;
        }
        
        .theme-federal .hero-section {
            padding: 60px 20px;
        }
        
        .theme-federal .hero-title {
            font-size: 2.2rem;
        }
        
        .theme-federal .stats-bar {
            grid-template-columns: 1fr;
            gap: 0;
        }
        
        .theme-federal .stat-card {
            border-right: none;
            border-bottom: 1px solid #E2E8F0;
        }
        
        .theme-federal .stat-card:last-child {
            border-bottom: none;
        }
        
        .theme-federal .search-form {
            flex-direction: column;
        }
        
        .theme-federal .search-form button {
            width: 100%;
        }
        
        .theme-federal .collections-grid {
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 16px;
        }
        
        .theme-federal .section-heading {
            font-size: 1.6rem;
        }
    
        .theme-federal .record-card { 
            flex-direction: column; 
        }
        
        .theme-federal .record-card-image { 
            width: 100%; 
            height: 200px; 
            border-right: none; 
            border-bottom: 1px solid #E2E8F0; 
        }
    
        .theme-federal .record-layout { 
            grid-template-columns: 1fr; 
        }
        
        .theme-federal aside { 
            position: static; 
        }
    }
    
    @media (max-width: 600px) {
        .theme-federal .hero-title {
            font-size: 1.8rem;
        }
        
        .theme-federal .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .theme-federal .header-inner {
            padding: 15px 20px;
        }
        
        .theme-federal .site-title {
            font-size: 1.4rem;
        }
        
        .theme-federal .section-heading {
            font-size: 1.4rem;
        }
        
        .theme-federal .records-table {
            font-size: 0.85rem;
        }
        
        .theme-federal .records-table th,
        .theme-federal .records-table td {
            padding: 12px 12px;
        }
    
        .theme-federal .search-btn {
            padding: 8px 16px;
            font-size: 13px;
        }
        
        .theme-federal .search-input {
            padding-right: 120px;
        }
    }
    }