/* Custom CSS for Flower Mound Running Website */

/* Reset & Variables */
:root {
    --bg-dark: #f5f5f5; /* Light gray body background matching the live site */
    --bg-card: #ffffff; /* White content page / cards */
    --bg-card-hover: #fafafa;
    
    /* Navigation Sidebar - default white */
    --nav-bg: #ffffff;
    --nav-text: #555555;
    --nav-text-hover: #0b2347;
    --nav-bg-hover: rgba(11, 35, 71, 0.05); /* Navy highlight on hover */
    --nav-border: rgba(0, 0, 0, 0.08);
    --dropdown-bg: #f8fafc;
    --logo-color: #0b2347; /* Navy logo text in light mode */
    --logo-accent-color: #555555;
    
    /* Footer Theme Variables - default white */
    --footer-bg: #ffffff;
    --footer-text: #555555;
    --footer-subtext-color: #777777;
    
    --jaguars-navy: #0B2347; /* Navy Blue brand accent */
    --jaguars-navy-accent: #0c1a2f;
    --jaguars-silver: #4b5563; /* Grey text */
    --jaguars-silver-faded: #6b7280;
    --accent-blue: #126dff; /* Live site link blue */
    --accent-blue-hover: #004ecc;
    
    --text-main: #2b2b2b; /* Live site dark gray text */
    --text-muted: #555555;
    --border-color: rgba(0, 0, 0, 0.08); /* Subtle grey border */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Dark Mode Override variables */
:root.dark-mode {
    --bg-dark: #0f172a; /* Slate 900 */
    --bg-card: #1e293b; /* Slate 800 */
    --bg-card-hover: #334155; /* Slate 700 */
    
    /* Navigation Sidebar - dark slate */
    --nav-bg: #0f172a;
    --nav-text: rgba(255, 255, 255, 0.75);
    --nav-text-hover: #ffffff;
    --nav-bg-hover: rgba(255, 255, 255, 0.08);
    --nav-border: rgba(255, 255, 255, 0.1);
    --dropdown-bg: #1e293b;
    --logo-color: #ffffff; /* White logo text in dark mode */
    --logo-accent-color: #A2A4A6;
    
    /* Footer Theme Variables - dark slate */
    --footer-bg: #0f172a;
    --footer-text: rgba(255, 255, 255, 0.75);
    --footer-subtext-color: rgba(255, 255, 255, 0.45);
    
    --jaguars-navy: #3b82f6;
    --jaguars-navy-accent: #60a5fa;
    --jaguars-silver: #94a3b8;
    --jaguars-silver-faded: #64748b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--jaguars-navy-accent);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Header & Navbar */
/* Header & Navbar - Desktop Vertical Sidebar Layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--nav-bg); /* Controlled by CSS theme variables (white by default) */
    border-right: 1px solid var(--nav-border);
    z-index: 1000;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--nav-text) transparent;
    display: flex;
    flex-direction: column;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 24px;
    height: 100%;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--logo-color); /* Responsive logo brand color */
    width: 100%;
    border-bottom: 1px solid var(--nav-border);
    padding-bottom: 20px;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-accent {
    color: var(--logo-accent-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--logo-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    flex: 1; /* Occupy remaining space in vertical container to push toggle button down */
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--nav-text);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    display: block;
}

.nav-link:hover, .nav-link.active {
    color: var(--nav-text-hover);
    background-color: var(--nav-bg-hover);
}

.nav-btn {
    background-color: var(--accent-blue);
    color: white !important;
    border: 1px solid var(--accent-blue-hover);
    text-align: center;
    margin-top: 10px;
}

.nav-btn:hover {
    background-color: var(--accent-blue-hover);
    border-color: var(--accent-blue);
}

/* Nav Dropdown (Desktop Sidebar Accordion) */
.nav-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-trigger {
    background: none;
    border: none;
    color: var(--nav-text);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-trigger, .nav-dropdown:hover .dropdown-arrow {
    color: var(--nav-text-hover);
    background-color: var(--nav-bg-hover);
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none; /* Accordion toggle on hover */
    background-color: var(--dropdown-bg);
    border-radius: 8px;
    padding: 6px 0;
    margin-top: 4px;
    width: 100%;
    border: 1px solid var(--nav-border);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 24px;
    font-size: 0.9rem;
    color: var(--nav-text);
    transition: var(--transition);
}

.dropdown-content a:hover {
    color: #ffffff;
    background-color: var(--accent-blue);
}

/* Theme Toggle Button styling */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--nav-border);
    border-radius: 8px;
    color: var(--nav-text);
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    width: 100%;
    margin-top: auto; /* Push to the very bottom of the sidebar */
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    color: var(--nav-text-hover);
    background-color: var(--nav-bg-hover);
    border-color: var(--nav-text-hover);
}

/* Main Content Area */
.main-content {
    margin-left: 280px; /* Offset for vertical sidebar */
    margin-top: 0;
    flex: 1;
    min-height: 100vh;
}

.page-section {
    display: none;
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
}

.page-section.active-section {
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-banner {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a111f;
    overflow: hidden;
}

/* Slideshow Background */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center top;
}

.slide.active {
    opacity: 0.85; /* Increased opacity for more prominent, colorful slideshow photos */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replaced dark blue/gray overlay with clean black transparency for true-to-life colors */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 24px;
}

.hero-tag {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-blue);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff; /* Explicit high-contrast white */
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85); /* Explicit high-contrast light grey */
    margin-bottom: 30px;
}

.hero-content .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-content .btn-secondary:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Buttons */
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--jaguars-silver);
    transform: translateY(-2px);
}

/* Sections Common Structure */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.section-header {
    text-align: center;
    padding: 60px 24px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    color: var(--accent-blue);
}

/* Home Grid Structure */
.home-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

/* News Section styling */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition);
}

.news-card:hover {
    background-color: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.news-date {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.news-body {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Highlight Reels Grid */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.video-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 16px;
}

.video-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Coaches Grid */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.coach-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding: 30px 24px;
    transition: var(--transition);
}

.coach-card:hover {
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
}

.coach-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--jaguars-navy-accent);
}

.coach-card h2 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.coach-role {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.coach-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.coach-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 0.85rem;
    background-color: rgba(255,255,255,0.04);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* Schedules Section */
.schedules-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.schedule-header h2 {
    font-size: 1.4rem;
}

.pdf-viewer {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    background-color: #ffffff;
}

/* Premium Dynamic Tables */
.board-table-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.premium-table th {
    background-color: var(--jaguars-navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 18px 24px;
    font-size: 0.95rem;
    color: white;
}

.premium-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.premium-table tbody tr:hover {
    background-color: rgba(255,255,255,0.02);
}

.premium-table a {
    color: var(--accent-blue);
}

.premium-table a:hover {
    color: var(--accent-blue-hover);
    text-decoration: underline;
}

.board-cta {
    text-align: center;
}

/* Forms layout cards */
.forms-grid, .records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.form-card, .record-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.form-card:hover, .record-card:hover {
    background-color: var(--bg-card-hover);
    transform: translateY(-3px);
}

.form-info h3, .record-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.form-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Sponsors Gallery */
.sponsors-gallery {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.sponsors-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.sponsor-sign-up {
    text-align: center;
}

/* Links card */
.links-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.link-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.link-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--accent-blue);
    transform: translateY(-4px);
}

.link-logo {
    font-size: 2.2rem;
    color: var(--accent-blue);
}

.link-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* Volunteer Cards */
.volunteer-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px 30px;
    max-width: 650px;
    margin: 0 auto;
}

.volunteer-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.volunteer-card h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.volunteer-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact layout */
.max-w-600 {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.google-form-iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 8px;
    background-color: transparent;
}

.text-center {
    text-align: center;
}

/* Footer Section */
.footer {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    font-size: 0.9rem;
    color: var(--footer-text);
}

.footer-subtext {
    margin-top: 6px;
    font-size: 0.75rem !important;
    color: var(--footer-subtext-color) !important;
}

/* Loading Skeletons */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 120px;
    margin-bottom: 16px;
}

.skeleton-video {
    height: 240px;
    border-radius: 12px;
}

.skeleton-profile {
    height: 320px;
    border-radius: 16px;
}

.skeleton-line {
    height: 20px;
    width: 100%;
}

/* Responsive Media Queries */
@media (max-width: 968px) {
    .home-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 1023px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--nav-border);
        overflow-y: visible;
        display: block;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        gap: 0;
        width: 100%;
        height: auto;
    }

    .nav-logo {
        width: auto;
        border-bottom: none;
        padding-bottom: 0;
    }

    .logo-img {
        height: 36px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--nav-bg);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 10px;
        border-bottom: 1px solid var(--nav-border);
        display: none;
        height: calc(100vh - 68px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link, .dropdown-trigger {
        width: 100%;
    }

    .nav-btn {
        margin-top: 10px;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 4px;
        background-color: var(--nav-bg-hover);
    }

    .nav-dropdown:hover .dropdown-content {
        display: block;
    }

    .theme-toggle-btn {
        margin-top: 20px;
        width: 100%;
    }

    .main-content {
        margin-left: 0;
        margin-top: 68px; /* Offset for top horizontal navbar on mobile */
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
}

/* Premium Form Styles */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--jaguars-silver);
}

.form-group input, .form-group textarea {
    background-color: #f8fafc; /* Light input background matching light mode card content */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(18, 109, 255, 0.15);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-success-alert {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 20px;
}

.form-success-alert h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success-alert p {
    color: var(--text-muted);
}

/* Embedded PDF tab layout styles */
.records-block {
    width: 100%;
}

.records-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for clean tab look */
}

.records-tabs::-webkit-scrollbar {
    display: none;
}

.record-tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
}

.record-tab-btn:hover {
    color: var(--text-main);
    background-color: var(--nav-bg-hover);
}

.record-tab-btn.active-tab {
    color: #ffffff !important;
    background-color: var(--accent-blue);
    box-shadow: 0 4px 10px rgba(18, 109, 255, 0.2);
}

.pdf-iframe-container {
    width: 100%;
    height: 750px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
