html, body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}
#query, select, button {
    font-size: 1.1em;
    font-family: inherit;
    padding: 0.9em 1em;
    border-radius: 4px;
}
.message {
    font-size: 1.1em;
    font-family: inherit;
}
h1 {
    font-size: 2em;
    font-family: inherit;
    margin-bottom: 0.5em;
}
h2 {
    font-size: 1.5em;
    font-family: inherit;
    margin-bottom: 0.4em;
}
h3 {
    font-size: 1.2em;
    font-family: inherit;
    margin-bottom: 0.3em;
}
body { font-family: 'Roboto', sans-serif; background: #F5F5F5; color: #333; margin: 0; padding: 0; line-height: 1.6; }
header { background: #4A90E2; color: white; padding: 1em; text-align: center; margin-bottom: 1.2em; }
nav a { color: white; margin: 0 1em; text-decoration: none; }
main { width: 80%; margin: 2em auto; padding: 1em; background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
h1, h2 { color: #4A90E2; }
header h1 { color: white; }
#theme-toggle, #clear-chat, #voice-input { margin: 0.5em; padding: 0.5em 1em; background: #4A90E2; color: white; border: none; cursor: pointer; border-radius: 4px; font-weight: bold; }
footer { text-align: center; padding: 1em; background: #eee; }
body.dark {
    background: #23272f;
    color: #f3f6fa;
}
body.dark header {
    background: #1a2233;
}
body.dark main {
    background: #23272f;
}
body.dark #theme-toggle, body.dark #clear-chat, body.dark #voice-input { background: #2A4A5E; color: white; }
body.dark header h1 { color: white; }
body.dark footer { background: #444; }

/* Header and logo styles */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5em 1em;
}
.site-logo {
    height: 60px;
    width: auto;
    margin-right: 1em;
    border-radius: 6px;
}
header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
}
nav a {
    font-weight: 500;
    padding: 0.25em 0.5em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
nav a.active {
    background: none;
    color: #4A90E2;
    border-radius: 0;
    font-weight: 600;
    text-decoration: underline;
    box-shadow: none;
}
nav a.active[href="https://openbible.ai"] {
    color: #fff;
}
nav a:focus, nav a:hover {
    background: #fff;
    color: #4A90E2;
    text-decoration: underline;
}
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1em;
    padding: 0.5em;
    border-radius: 4px;
    transition: background 0.2s;
}
.nav-toggle:focus, .nav-toggle:hover {
    background: #e0e7ef;
}
.hamburger {
    display: inline-block;
    width: 28px;
    height: 3px;
    background: #fff;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    position: absolute;
    border-radius: 2px;
    transition: 0.2s;
}
.hamburger::before { top: -9px; }
.hamburger::after { top: 9px; }

@media (max-width: 700px) {
    .header-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.5em;
    }
    .site-logo {
        margin-bottom: 0;
    }
    header h1 {
        font-size: 1.3em;
        margin-bottom: 0;
    }
    nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #4A90E2;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 200;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        padding: 1em 0.5em;
        border-radius: 0 0 8px 8px;
        transition: all 0.2s;
    }
    nav.mobile-nav[aria-hidden="false"] {
        display: flex !important;
    }
    nav.mobile-nav[aria-hidden="true"] {
        display: none !important;
    }
    .header-inner {
        position: relative;
    }
}

/* Index.html specific styles */
#input-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 80%;
    margin: 0 auto 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 0.5em;
    border-radius: 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.5em 1em;
    z-index: 10;
    min-height: 3.2em;
}
#input-bar input, #input-bar select {
    border: none;
    outline: none;
    font-size: 1.1em;
    font-family: inherit;
    padding: 0.7em 1em;
    border-radius: 2em;
    background: #f5f5f5;
    margin: 0;
}
#input-bar input {
    flex: 1;
}
#input-bar select {
    min-width: 5.5em;
}
#input-bar button {
    font-size: 1.1em;
    font-family: inherit;
    padding: 0.7em 1.2em;
    border-radius: 2em;
    background: #4A90E2;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
    margin-left: 0.2em;
}
#input-bar button:focus, #input-bar button:hover {
    background: #2A4A5E;
}
#input-bar #loader {
    margin-left: 0.5em;
    font-size: 1.2em;
}
#loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2em;
    height: 2.2em;
    min-width: 2.2em;
    min-height: 2.2em;
    vertical-align: middle;
    margin-left: 0.2em;
    margin-right: 0.2em;
    position: relative;
    visibility: hidden;
    flex-shrink: 0;
}
#loader.loading {
    visibility: visible;
}
#loader .spinner {
    display: none;
    width: 1.5em;
    height: 1.5em;
    border: 3px solid #e0e7ef;
    border-top: 3px solid #4A90E2;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
    position: static;
}
#loader.loading .spinner {
    display: block;
}
#loader .loader-text {
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 700px) {
    #input-bar {
        flex-direction: column;
        align-items: stretch;
        width: 98%;
        padding: 0.3em 0.5em;
        gap: 0.5em;
        min-height: unset;
    }
    #input-bar input, #input-bar select, #input-bar button, #input-bar #loader {
        width: 100%;
        margin: 0 0 0.4em 0;
        font-size: 1em;
        padding: 0.5em 0.7em;
        border-radius: 8px;
    }
    #input-bar input {
        flex: unset;
    }
    #input-bar button {
        margin-left: 0;
    }
    #input-bar #loader {
        margin: 0 auto 0.4em auto;
        justify-content: center;
    }
}

#chat {
    width: 80%;
    margin: 0 auto;
    border: 1px solid #ccc;
    height: auto;
    overflow-y: scroll;
    padding: 1em;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.message {
    margin: 0.5em 0;
    padding: 0.9em 1.2em;
    border-radius: 18px;
    max-width: 70%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    font-size: 1.08em;
    line-height: 1.6;
    word-break: break-word;
    position: relative;
    animation: fadeInUp 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.user {
    background: #E0F7FA;
    color: #1565c0;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 18px;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    box-shadow: 0 2px 8px rgba(33,150,243,0.08);
}
.ai {
    background: #f5f5f5;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 18px;
    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: 0 2px 8px rgba(74,144,226,0.06);
}
@media (max-width: 700px) {
    #chat {
        width: 98%;
        padding: 0.5em;
        height: auto;
    }
    .message {
        max-width: 95%;
        font-size: 1em;
        padding: 0.7em 0.8em;
    }
}
.message { margin: 1em 0; padding: 1em; border-radius: 8px; }
.user { background: #E0F7FA; text-align: right; }
.ai { background: #FFF; border: 1px solid #eee; }
.ai p { margin: 0.5em 0; }
.ai strong { color: #4A90E2; }
.ai ul, .ai ol { margin-left: 1em; }
.ai blockquote { border-left: 3px solid #ccc; padding-left: 1em; font-style: italic; }
.loading { display: none; margin-left: 1em; font-size: 1.2em; }
@media (prefers-color-scheme: dark) { 
    body { background: #333; color: #fff; } 
    #chat { background: #444; } 
    .verse-block { background: #555; border-color: #4A90E2; color: #fff; }
    .verse-block.error { background: #444; border-color: #e57373; color: #ffcccc; }
    .user { background: #2A4A5E; }
    .ai { background: #444; border-color: #555; }
}
body.dark #chat {
    background: #23272f;
    border-color: #333a4d;
    color: #f3f6fa; /* Lighten chat text in dark mode */
}
body.dark .verse-block { background: #555; border-color: #4A90E2; color: #fff; }
body.dark .verse-block.error { background: #444; border-color: #e57373; color: #ffcccc; }
body.dark .user {
    background: #1e2a38;
    color: #f3f6fa; /* Lighten user text in dark mode */
}
body.dark .ai {
    background: #23272f;
    color: #fff; /* Lighten AI text in dark mode */
    border-color: #333a4d;
}
@media (max-width: 600px) {
    #query { border-radius: 4px; margin-bottom: 0.5em; }
    #bible-version { border-radius: 4px; margin-bottom: 0.5em; }
    button { border-radius: 4px; }
}
.verse-block {
    background: #f9f9f9;
    border-left: 4px solid #4A90E2;
    padding: 0.5em 0.8em;
    margin-top: 0.5em;
    border-radius: 6px;
    font-size: 0.97em;
    line-height: 1.4;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: background 0.2s, box-shadow 0.2s;
}
.verse-block summary {
    font-weight: 500;
    font-size: 1em;
    padding: 0.2em 0;
    cursor: pointer;
    outline: none;
}
.verse-block[open] {
    background: #f0f4fa;
    box-shadow: 0 2px 8px rgba(74,144,226,0.06);
}
details.verse-block:not([open]) .verse-text {
    display: none;
}
.verse-block .verse-text {
    margin-top: 0.3em;
    font-size: 0.97em;
    line-height: 1.4;
}
.verse-block.compact {
    padding: 0.3em 0.5em;
    font-size: 0.93em;
    margin-top: 0.2em;
}
.verse-block.compact summary {
    font-size: 0.97em;
    padding: 0.1em 0;
}
.verse-block a {
    text-decoration: none;
    color: #4A90E2;
}
.verse-icon {
    font-size: 1.1em;
    margin-right: 0.4em;
}
.verse-block.error {
    background: #fff8f8;
    border-color: #e57373;
    color: #c62828;
}
.verse-card, #daily-verse {
    background: linear-gradient(90deg, #f5fafd 60%, #eaf3fb 100%);
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(74,144,226,0.08);
    padding: 1.5em 2em;
    margin: 2em auto 1.5em auto;
    max-width: 540px;
    text-align: center;
    font-size: 1.18em;
    color: #2a3a4d;
    position: relative;
    transition: box-shadow 0.2s;
    border-left: 6px solid #4A90E2;
    animation: fadeInUp 0.7s;
}
.verse-card strong, #daily-verse strong {
    display: block;
    margin-bottom: 0.5em;
    font-size: 1.1em;
    color: #4A90E2;
    font-weight: bold;
}
.verse-card em, #daily-verse em {
    font-style: italic;
    color: #2a3a4d;
}
.verse-card .bible-icon, #daily-verse .bible-icon {
    font-size: 1.5em;
    color: #4A90E2;
    margin-bottom: 0.3em;
    display: block;
}
body.dark .verse-card, body.dark #daily-verse {
    background: linear-gradient(90deg, #23272f 60%, #2d3340 100%);
    color: #f3f6fa;
    border-left: 6px solid #a7d8f7;
}
body.dark .verse-card strong, body.dark #daily-verse strong {
    color: #a7d8f7;
}
body.dark .verse-card em, body.dark #daily-verse em {
    color: #f3f6fa;
}
body.dark .verse-card .bible-icon, body.dark #daily-verse .bible-icon {
    color: #a7d8f7;
}
#daily-verse {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0.2em 0 0.7em 0;
    margin: 0.5em auto 0.5em auto;
    max-width: 540px;
    text-align: center;
    font-size: 0.98em;
    color: #2a3a4d;
    border-left: none;
    animation: none;
}
#daily-verse .bible-icon {
    font-size: 1em;
    color: #4A90E2;
    margin-right: 0.3em;
    vertical-align: middle;
    display: inline-block;
}
#daily-verse strong {
    font-size: 0.98em;
    color: #4A90E2;
    font-weight: 600;
    margin-right: 0.3em;
    display: inline;
}
#daily-verse a {
    font-size: 0.97em;
    color: #4A90E2;
    text-decoration: underline;
}
body.dark #daily-verse {
    background: none;
    color: #f3f6fa;
    border-left: none;
}
body.dark #daily-verse .bible-icon {
    color: #a7d8f7;
}
body.dark #daily-verse strong {
    color: #a7d8f7;
}
body.dark #daily-verse a {
    color: #a7d8f7;
}

/* Contact form specific styles */
form { max-width: 600px; margin: 0 auto; }
label { display: block; margin-top: 1em; }
input, textarea { width: 100%; padding: 0.5em; margin-top: 0.5em; border: 1px solid #ccc; border-radius: 4px; }
button[type="submit"] { margin-top: 1em; padding: 0.75em; background: #4A90E2; color: white; border: none; cursor: pointer; border-radius: 4px; }
body.dark input, body.dark textarea { background: #555; color: #fff; border-color: #666; }
.form-feedback {
    margin-bottom: 0.5em;
    font-size: 1em;
    min-height: 1.5em;
    font-weight: 500;
}
input[aria-invalid="true"], textarea[aria-invalid="true"] {
    border-color: #c62828;
    background: #fff8f8;
}
input:focus, textarea:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

/* Resources page specific styles */
ul { list-style: none; padding: 0; }
li { margin: 0.5em 0; }
a { color: #4A90E2; text-decoration: none; }
a:hover { text-decoration: underline; } 
.font-size-controls button {
    background: #e0e7ef;
    color: #333;
    border: none;
    margin: 0 0.1em;
    padding: 0.2em 0.6em;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.font-size-controls button:focus, .font-size-controls button:hover {
    background: #4A90E2;
    color: #fff;
    outline: 2px solid #4A90E2;
} 
button, .font-size-controls button, #theme-toggle, #clear-chat, #voice-input {
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
}
button:active, .font-size-controls button:active, #theme-toggle:active, #clear-chat:active, #voice-input:active {
    transform: scale(0.97);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
button:focus, .font-size-controls button:focus, #theme-toggle:focus, #clear-chat:focus, #voice-input:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

/* Fade-in animation for chat messages and cards */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}
.message, .verse-block, .card, .resource-card {
    animation: fadeInUp 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Card styles for resources and verses */
.card, .resource-card, .verse-block {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.1s;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1.5em;
}
.card:hover, .resource-card:hover, .verse-block:hover {
    box-shadow: 0 6px 18px rgba(74,144,226,0.10);
    transform: translateY(-2px) scale(1.01);
}
.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    margin-bottom: 2em;
}
.resource-card {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    padding: 1em 1.2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.1s;
    margin-bottom: 0;
}
.resource-card:hover {
    box-shadow: 0 6px 18px rgba(74,144,226,0.10);
    transform: translateY(-2px) scale(1.01);
}
.resource-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #f5f5f5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-top: 0.2em;
}
@media (max-width: 700px) {
    .resource-list {
        gap: 0.7em;
    }
    .resource-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8em 0.7em;
    }
}

/* Skeleton loader for loading states */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e7ef 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s infinite linear;
    border-radius: 6px;
    min-height: 1.5em;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
} 

/* Quick suggestion bar */
#quick-suggestions {
    display: flex;
    gap: 0.5em;
    margin: 0.7em auto 1.2em auto;
    width: 80%;
    flex-wrap: wrap;
    justify-content: center;
}
.quick-suggestion {
    background: #e0e7ef;
    color: #333;
    border: none;
    border-radius: 16px;
    padding: 0.4em 1em;
    font-size: 1em;
    margin-bottom: 0.3em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.quick-suggestion:hover, .quick-suggestion:focus {
    background: #4A90E2;
    color: #fff;
} 
.inline-verses {
    margin-top: 1em;
    font-size: 0.97em;
    color: #333;
    line-height: 1.5;
}
.inline-verse {
    display: inline-block;
    margin-right: 1.2em;
    margin-bottom: 0.2em;
    background: none;
    padding: 0;
    border: none;
}
.inline-verse a {
    color: #4A90E2;
    text-decoration: underline;
    font-weight: 500;
} 
#instructions {
    margin: 1.8em 0 0.5em 0;
    font-size: 1.08em;
    color: #444;
    text-align: center;
} 
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(74,144,226,0.18); }
    50% { box-shadow: 0 0 16px 4px rgba(74,144,226,0.28); }
    100% { box-shadow: 0 0 0 0 rgba(74,144,226,0.18); }
}
#input-bar.pulse-glow {
    animation: pulse-glow 1.6s ease-in-out 0s 3;
} 
body.dark #input-bar {
    background: #23272f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
body.dark #input-bar input, body.dark #input-bar select {
    background: #2d3340;
    color: #f3f6fa;
    border: none;
}
body.dark #input-bar button {
    background: #2A4A5E;
    color: #fff;
}
body.dark #input-bar button:focus, body.dark #input-bar button:hover {
    background: #4A90E2;
    color: #fff;
} 
/* Theme toggle switch styles */
.theme-switch {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-left: 1.2em;
    user-select: none;
    height: 32px;
}
.theme-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.theme-switch .slider {
    display: flex;
    align-items: center;
    background: #e0e7ef;
    border-radius: 16px;
    width: 48px;
    height: 28px;
    position: relative;
    transition: background 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 0 6px;
}
.theme-switch .icon {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
    transition: opacity 0.2s, color 0.2s;
    color: #888;
}
.theme-switch .icon.sun {
    opacity: 1;
}
.theme-switch .icon.moon {
    opacity: 0.5;
}
.theme-switch input[type="checkbox"]:checked + .slider .icon.sun {
    opacity: 0.5;
}
.theme-switch input[type="checkbox"]:checked + .slider .icon.moon {
    opacity: 1;
    color: #4A90E2;
}
.theme-switch input[type="checkbox"]:not(:checked) + .slider .icon.sun {
    color: #4A90E2;
}
.theme-switch input[type="checkbox"]:focus + .slider {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}
body.dark .theme-switch .slider {
    background: #23272f;
}
body.dark .theme-switch .icon {
    color: #bbb;
}
body.dark .theme-switch input[type="checkbox"]:checked + .slider .icon.moon {
    color: #a7d8f7;
}
body.dark .theme-switch input[type="checkbox"]:not(:checked) + .slider .icon.sun {
    color: #a7d8f7;
} 
#feedback-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    background: #4A90E2;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 0.7em 1.4em;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(74,144,226,0.10);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
#feedback-widget:hover, #feedback-widget:focus {
    background: #3576b8;
    box-shadow: 0 4px 16px rgba(74,144,226,0.16);
    outline: 2px solid #4A90E2;
}
#feedback-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(30,40,60,0.18);
    align-items: center;
    justify-content: center;
}
#feedback-modal .modal-content {
    background: #fff;
    color: #222;
    border-radius: 10px;
    padding: 2em 1.5em 1.5em 1.5em;
    min-width: 320px;
    max-width: 90vw;
    box-shadow: 0 4px 24px rgba(74,144,226,0.13);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.7em;
}
#feedback-modal .close-modal {
    position: absolute;
    top: 0.7em;
    right: 1em;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #888;
    cursor: pointer;
}
#feedback-modal textarea {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #bbb;
    padding: 0.6em;
    font-size: 1em;
    resize: vertical;
}
#feedback-modal button[type="submit"] {
    background: #4A90E2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.6em 1.2em;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
#feedback-modal button[type="submit"]:hover, #feedback-modal button[type="submit"]:focus {
    background: #3576b8;
}
body.dark #feedback-modal .modal-content {
    background: #23272f;
    color: #f3f6fa;
}
body.dark #feedback-modal textarea {
    background: #23272f;
    color: #f3f6fa;
    border-color: #444;
}
body.dark #feedback-modal .close-modal {
    color: #bbb;
} 
#feedback-minimized-icon {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    background: #4A90E2;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5em;
    box-shadow: 0 2px 8px rgba(74,144,226,0.10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
}
#feedback-minimized-icon:hover, #feedback-minimized-icon:focus {
    background: #3576b8;
    box-shadow: 0 4px 16px rgba(74,144,226,0.16);
    outline: 2px solid #4A90E2;
} 
@media (max-width: 700px) {
  #feedback-widget,
  #feedback-minimized-icon {
    display: none !important;
  }
} 
body.dark #instructions {
    color: #fff;
    font-weight: 600;
} 
/* Remove dark mode UI on mobile entirely */
@media (max-width: 700px){
  .theme-switch{ display: none !important; }
  nav a.mobile-only{ display: none !important; }
}
@media (min-width: 701px){
  .theme-switch{ display: inline-flex !important; }
} 
@media (max-width: 700px){
  #quick-suggestions{ display: none !important; }
} 
/* Utility: hide specific inline content on mobile only */
@media (max-width: 700px){
  .hide-on-mobile{ display: none !important; }
} 