body {
    background-image: url('../fabulatabula sfondo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.container {
    padding-bottom: 4rem;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 800px;
    padding: 0 15px 4rem 15px;
}

/* Riduzione del margine superiore */
.container.mt-5 {
    margin-top: 1rem !important; /* Ridotto da 3rem (mt-5) a 1rem */
}

.card {
    background-color: rgba(255, 255, 255, 0.1); /* Ridotta l'opacità da 0.95 a 0.8 */
    backdrop-filter: blur(5px);
    margin-top: 0px;
}

.card-title {
    font-family: 'Charm', cursive;
    font-size: 1.3rem;
    color: #2d160e;
    margin-bottom: 1rem;
}

.chat-response {
    margin: 20px 0;
    padding: 20px;
    border-left: 4px solid #d8c396;
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2d160e;
}

#loading {
    background-color: rgba(204, 229, 255, 0.95);
    backdrop-filter: blur(5px);
}

h1.mb-4 {
    font-family: 'Charm', cursive;
    color: #8B1A1A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    text-align: center;
    margin-bottom: 2rem !important;
    padding: 0 10px;
}

h1 {
    font-family: 'Charm', cursive;
    color: #5c7cfa;
}

.file-info-container {
    width: 100%;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 10px;
}

.file-title {
    position: relative;
    padding: 8px 15px;
    background-color: rgba(248, 249, 250, 0.6);
    border-radius: 5px;
    font-style: italic;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #dee2e6;
    color: #495057;
    width: 100%;
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.file-title .file-name {
    font-weight: bold;
    margin-right: 10px;
}

.file-title h2 {
    font-family: 'Charm', cursive;
    color: #8B1A1A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    margin: 0;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    word-break: break-word;
}

.last-sentence {
    font-size: 0.85rem;
    max-height: 80px;
    overflow-y: auto;
    padding: 8px;
    border-left: 3px solid #6c757d;
    margin-top: 10px;
    background-color: #f9f9f9;
    border-radius: 3px;
    width: 100%;
}

.upload-area {
    transition: opacity 0.5s ease-out;
}

.card, .btn, .form-control {
    transition: all 0.3s ease;
}

select, button, input[type="file"] {
    min-height: 44px;
}

.question-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.question-btn {
    padding: 0.8rem 1rem;
    text-align: left;
    white-space: normal;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 1;
    transform-origin: center;
    transform: scale(1);
    
    /* Stile simile al logout button */
    background-color: #f3e7c9; /* Colore pergamena */
    color: #2d160e; /* Colore inchiostro marrone scuro */
    border: 1px solid #a08c5b;
    border-radius: 5px;
    font-family: 'Charm', cursive;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: none;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1), inset 0 0 15px rgba(160,140,91,0.2);
    transition: all 0.3s ease;
}

.question-btn.unselected {
    opacity: 0.5;
    transform: scale(0.95);
    pointer-events: none;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.question-btn.hidden {
    display: none;
}

.question-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--fabule-primary), var(--fabule-accent-3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.question-btn.selected {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    color: #2d160e;
    background-color: #d8c396; /* Più scuro del normale per indicare selezione */
    border-color: #7d6942;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15), inset 0 0 15px rgba(160,140,91,0.4);
}

.question-btn.selected:before {
    opacity: 1;
}

.question-btn:hover:not(:disabled):not(.selected) {
    background-color: #e8d9b0;
    color: #1a0c06;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), inset 0 0 20px rgba(160,140,91,0.3);
    transform: translateY(-2px);
    border-color: #7d6942;
}

.question-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background-color: #f3e7c9;
    color: #8a7456;
}

.question-btn.question-waiting {
    opacity: 0.9; /* Aumentata l'opacità per migliorare la leggibilità */
    cursor: wait;
    pointer-events: none;
    background-color: #e8dfc9; /* Sfondo pergamena chiaro */
    color: #2d160e; /* Colore testo marrone scuro per un buon contrasto */
    box-shadow: none !important;
    transform: none !important;
}

/* Miglioramento della leggibilità dei pulsanti delle domande selezionate */
.question-btn.active, .question-btn:active {
    background-color: #0056b3 !important; /* Colore di sfondo più scuro */
    color: white !important; /* Testo bianco per maggior contrasto */
    font-weight: bold; /* Testo in grassetto */
    border-color: #004085 !important; /* Bordo più scuro */
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Effetto di evidenziazione */
}

/* Assicurarsi che il testo rimanga leggibile anche durante l'elaborazione */
.processing .question-btn.active, .processing .question-btn:active {
    opacity: 0.9; /* Leggera trasparenza ma mantenendo la leggibilità */
    color: white !important; /* Assicurarsi che il testo rimanga bianco */
}

#customQuestionDiv {
    margin-bottom: 1rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.button-group button {
    flex: 0 1 auto;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1px;
    text-align: center;
    width: 100%;
}

/* New style for header container with left alignment */
.header-container.left-aligned {
    align-items: flex-start;
    text-align: left;
}

.title-logout-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Updated logout button styles - Ink and parchment theme */
.logout-btn {
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    background-color: #f3e7c9; /* Parchment color */
    color: #2d160e; /* Dark brown ink color */
    border: 1px solid #a08c5b;
    border-radius: 5px;
    font-family: 'Charm', cursive;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: none;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1), inset 0 0 15px rgba(160,140,91,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    width: auto;
    min-width: 120px;
    margin: 0;
}

.logout-btn:hover {
    background-color: #e8d9b0;
    color: #1a0c06;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), inset 0 0 20px rgba(160,140,91,0.3);
    transform: translateY(-2px);
    border-color: #7d6942;
}

.logout-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), inset 0 0 10px rgba(160,140,91,0.2);
}

/* Footer with logout button */
.footer {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 15px;
    z-index: 100;
    width: auto;
    text-align: right;
}

/* Logo styles */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%; /* Ensure container takes full width */
}

/* Updated class for left-aligned smaller logo */
.logo-container.left-aligned {
    justify-content: flex-start;
    margin-bottom: 10px;
    align-items: flex-start;
    text-align: left;
}

/* New class for left-aligned smaller logo */
.logo-container.left-aligned {
    justify-content: flex-start;
    margin-bottom: 10px;
}

/* New container for logo and button */
.logo-nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    gap: 15px;
}

/* New container for logo and buttons */
.logo-nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    gap: 15px;
}

/* Container for header buttons */
.header-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* New button for text selection */
.text-select-btn {
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    background-color: #f3e7c9; /* Parchment color - same as logout button */
    color: #2d160e; /* Dark brown ink color */
    border: 1px solid #a08c5b;
    border-radius: 5px;
    font-family: 'Charm', cursive;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: none;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1), inset 0 0 15px rgba(160,140,91,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    margin: 0;
}

.text-select-btn:hover {
    background-color: #e8d9b0;
    color: #1a0c06;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), inset 0 0 20px rgba(160,140,91,0.3);
    transform: translateY(-2px);
    border-color: #7d6942;
}

.text-select-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), inset 0 0 10px rgba(160,140,91,0.2);
}

.app-logo { 
    height: 180px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

/* New class for smaller logo */
.small-logo {
    height: 100px !important;
}

.app-logo:hover {
    transform: scale(1.05);
}

.title-container {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
}

.custom-ask-btn {
    background-color: #5c7cfa;
    border-color: #4263eb;
}

.text-muted.fst-italic {
    color: #495057 !important;
    padding: 6px;
    border-radius: 3px;
    background-color: #ffffff;
    border-left: 2px solid #6c757d;
    line-height: 1.5;
}

.reset-inline {
    margin-left: 10px;
    align-self: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    vertical-align: middle;
    background-color: #f3e7c9;
    color: #2d160e;
    border: 1px solid #a08c5b;
    font-family: 'Charm', cursive;
}

.reset-inline:hover {
    background-color: #e8d9b0;
    color: #1a0c06;
}

#newTextButton {
    background-color: #f3e7c9; /* Match the pergamena style */
    color: #2d160e;
    border: 1px solid #a08c5b;
    font-family: 'Charm', cursive;
}

#newTextButton:hover {
    background-color: #e8d9b0;
    color: #1a0c06;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), inset 0 0 20px rgba(160,140,91,0.3);
    transform: translateY(-2px);
    border-color: #7d6942;
}

/* Make sure these classes work for both buttons */
.reset-inline, .new-text-inline {
    margin-left: 10px;
    align-self: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    vertical-align: middle;
}

/* Add this new style for the inline buttons container */
.inline-buttons {
    display: inline-flex;
    margin-left: 10px;
    vertical-align: middle;
    gap: 5px;
}

/* Make sure both buttons appear consistently */
#resetButton, #newTextButton {
    display: none;
    background-color: #f3e7c9;
    color: #2d160e;
    border: 1px solid #a08c5b;
    font-family: 'Charm', cursive;
    transition: all 0.3s ease;
}

#resetButton:hover, #newTextButton:hover {
    background-color: #e8d9b0;
    color: #1a0c06;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15), inset 0 0 20px rgba(160,140,91,0.3);
    transform: translateY(-2px);
    border-color: #7d6942;
}

/* Add this new style for disabled state */
#resetButton:disabled, #newTextButton:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background-color: #f3e7c9;
    color: #8a7456;
    box-shadow: none;
}

.button-waiting {
    opacity: 0.7;
    cursor: wait;
}

.token-count {
    margin-left: 5px;
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .button-group button {
        flex: 1 1 auto;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logout-btn {
        font-size: 0.9rem;
        padding: 6px 12px;
        min-width: 100px;
    }
    
    .footer {
        padding: 10px;
    }
    
    .container {
        padding-bottom: 5rem;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .button-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .button-group button {
        width: 100%;
    }
    
    .header-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logout-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        min-width: 100px;
    }
    
    .footer {
        padding: 10px;
        width: 100%;
        text-align: center;
    }
    
    .question-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .question-btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
    
    .file-title {
        font-size: 0.85rem;
    }
    
    .last-sentence {
        font-size: 0.8rem;
        max-height: 100px;
    }
    
    .card {
        margin-bottom: 15px;
    }
    
    .app-logo {
        height: 120px;
    }
    
    .small-logo {
        height: 80px !important;
    }
    
    h1.mb-4 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    /* Improve button display on mobile */
    .inline-buttons {
        display: flex;
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }
    
    .inline-buttons button {
        flex: 1;
        font-size: 0.9rem;
    }

    .token-count {
        font-size: 0.8rem;
        display: inline-block;
    }

    .logo-nav-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }
    
    .header-buttons {
        gap: 5px;
    }
    
    .text-select-btn {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .app-logo {
        height: 100px;
    }
    
    .small-logo {
        height: 70px !important;
    }
    
    .card-body {
        padding: 15px 10px;
    }
    
    .button-group {
        gap: 0.4rem;
    }
    
    .footer {
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    .logout-btn {
        width: 100%;
    }
    
    h1.mb-4 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .file-title, .last-sentence {
        padding: 5px;
    }
    
    input, select, textarea, button {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }

    .logo-nav-container {
        flex-wrap: wrap;
    }
    
    .header-buttons {
        margin-top: 5px;
        width: 100%;
    }
    
    .text-select-btn {
        font-size: 0.8rem;
        padding: 4px 8px;
        margin-top: 5px;
    }
}

/* Improve form elements touch target size */
@media (max-width: 768px) {
    input, select, button, .form-control {
        min-height: 44px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    textarea.form-control {
        min-height: 80px;
    }
    
    .chat-response {
        font-size: 0.95rem;
        padding: 12px;
    }
}

/* Language Selector Styles - Updated for header position */
.language-selector {
    margin: 0;
    padding: 0;
}

.language-dropdown select {
    padding: 6px 10px;
    border: 1px solid #a08c5b;
    border-radius: 5px;
    background-color: #f3e7c9;
    color: #2d160e;
    font-family: 'Charm', cursive;
    cursor: pointer;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%232d160e' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
    height: 100%;
}

.language-dropdown select:hover {
    background-color: #e8d9b0;
}

.header-buttons .language-selector {
    margin-right: 10px;
}

/* Mobile styling for language selector */
@media (max-width: 768px) {
    .language-selector {
        text-align: left;
    }
    
    .language-dropdown select {
        width: auto;
        font-size: 0.9rem;
        padding: 5px 25px 5px 8px;
    }
    
    .header-buttons .language-selector {
        margin-bottom: 5px;
    }
}

/* File selection page styles */
.preloaded-files-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preloaded-files-container .card {
    background-color: rgba(248, 249, 250, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid #d1c9b7;
    transition: transform 0.2s, box-shadow 0.2s;
}

.preloaded-files-container .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.preloaded-files-container .card-title {
    font-family: 'Charm', cursive;
    color: #2d160e;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.preloaded-files-container .card-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Mobile adjustments for file selection */
@media (max-width: 768px) {
    .preloaded-files-container .card {
        margin-bottom: 10px;
    }
    
    .preloaded-files-container .card-body {
        padding: 12px;
    }
}

.markdown-body {
    color: #24292e;
    line-height: 1.6;
    word-wrap: break-word;
    padding: 1rem;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.markdown-body h1 { font-size: 2em; }
.markdown-body h2 { font-size: 1.5em; }
.markdown-body h3 { font-size: 1.25em; }
.markdown-body h4 { font-size: 1em; }

.markdown-body code {
    padding: 0.2em 0.4em;
    margin: 0;
    font-size: 85%;
    background-color: rgba(27,31,35,0.05);
    border-radius: 3px;
    font-family: monospace;
}

.markdown-body pre {
    padding: 16px;
    overflow: auto;
    font-size: 85%;
    line-height: 1.45;
    background-color: #f6f8fa;
    border-radius: 3px;
}

.markdown-body pre code {
    padding: 0;
    margin: 0;
    overflow: visible;
    font-size: inherit;
    word-break: normal;
    white-space: pre;
    background: transparent;
    border: 0;
}

.markdown-body blockquote {
    padding: 0 1em;
    color: #6a737d;
    border-left: 0.25em solid #dfe2e5;
    margin: 0 0 16px 0;
}

.markdown-body ul,
.markdown-body ol {
    padding-left: 2em;
    margin-bottom: 16px;
}

.markdown-body table {
    display: block;
    width: 100%;
    overflow: auto;
    margin-bottom: 16px;
    border-spacing: 0;
    border-collapse: collapse;
}

.markdown-body table th,
.markdown-body table td {
    padding: 6px 13px;
    border: 1px solid #dfe2e5;
}

.markdown-body table tr:nth-child(2n) {
    background-color: #f6f8fa;
}

.markdown-body p {
    margin-bottom: 16px;
}

.markdown-body img {
    max-width: 100%;
    box-sizing: border-box;
}

.markdown-body hr {
    height: 0.25em;
    padding: 0;
    margin: 24px 0;
    background-color: #e1e4e8;
    border: 0;
}

.question-controls {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
}

.audio-controls {
    display: flex;
    align-items: center;
}

.audio-controls button {
    padding: 0.375rem 0.75rem;
}

/* Responsiveness for mobile */
@media (max-width: 768px) {
    .question-controls {
        margin-left: 0;
        margin-top: 10px;
        justify-content: flex-start;
        width: 100%;
    }
}

/* Styling delle risposte nella pagina index */
.chat-response {
    margin: 20px 0;
    padding: 20px;
    border-left: 4px solid #d8c396;
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2d160e;
}

/* Stile unificato per titoli e sottotitoli nelle risposte */
.chat-response h1, 
.chat-response h2, 
.chat-response h3, 
.chat-response h4, 
.chat-response h5, 
.chat-response h6 {
    font-family: 'Charm', cursive;
    color: #2d160e;
    margin-top: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.2;
}

/* Dimensioni specifiche per ogni livello di titolo, rese meno evidenti */
.chat-response h1 { font-size: 1.5em; }
.chat-response h2 { font-size: 1.3em; }
.chat-response h3 { font-size: 1.15em; }
.chat-response h4 { font-size: 1em; }
.chat-response h5 { font-size: 0.9em; }
.chat-response h6 { font-size: 0.85em; }

/* Stile per elementi di enfasi nelle risposte */
.chat-response strong, 
.chat-response b {
    color: #2d160e;
    font-weight: 600;
}

/* Stile per blocchi di citazione */
.chat-response blockquote {
    border-left: 3px solid #d8c396;
    padding-left: 15px;
    margin-left: 0;
    color: #5a4534;
    font-style: italic;
    background-color: rgba(216, 195, 150, 0.1);
    padding: 10px 15px;
}

/* Stile per elenchi nelle risposte */
.chat-response ul,
.chat-response ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

/* Margine paragrafi */
.chat-response p {
    margin-bottom: 12px;
}

/* Responsiveness per dispositivi mobili */
@media (max-width: 768px) {
    .chat-response {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .chat-response h1 { font-size: 1.3em; }
    .chat-response h2 { font-size: 1.2em; }
    .chat-response h3 { font-size: 1.1em; }
    .chat-response h4 { font-size: 1em; }
    .chat-response h5 { font-size: 0.9em; }
    .chat-response h6 { font-size: 0.85em; }
}