/*
 * Bulk OCR feedback modal prototype - styles
 * Hussein Mmbaga (@Ssein) - GSoC 2026 (T415145, modal task T394131)
 *
 * Colours and chrome copied from the Vector 2010 (legacy) skin so the mock
 * looks like a real MediaWiki page. Most of this file goes away when the
 * design is ported to OOUI widgets (ButtonWidget, ProcessDialog,
 * MultilineTextInputWidget, BookletLayout), which ship their own styles -
 * it only exists so mentors can judge the design without visual noise.
 */

/* ================================
   Reset and base typography
   ================================ */

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

body {
    font-family: sans-serif;
    font-size: 0.8em;
    line-height: 1.5;
    color: #252525;
    background: #f6f6f6;
}

a {
    color: #0645ad;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.new,
a.red {
    color: #ba0000;
}

/* ================================
   Vector 2010 top bar
   ================================ */

.mw-topbar {
    background: #f6f6f6;
    padding: 6px 12px;
    display: flex;
    justify-content: flex-end;
    font-size: 0.75em;
}

.mw-topbar a {
    margin-left: 10px;
    color: #0645ad;
}

.mw-topbar .username {
    padding-left: 20px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><circle cx='8' cy='5' r='3' fill='%230645ad'/><path d='M2 15c0-4 12-4 12 0z' fill='%230645ad'/></svg>") no-repeat left center;
}

/* ================================
   Vector 2010 tabs
   ================================ */

.mw-tabs {
    background: #f6f6f6;
    padding: 0 12px;
    border-bottom: 1px solid #a7d7f9;
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
}

.mw-tabs-left,
.mw-tabs-right {
    display: flex;
    gap: 0;
}

.mw-tab {
    padding: 8px 12px 6px;
    color: #0645ad;
    background: #f6f6f6;
    border: 1px solid transparent;
    border-bottom: none;
    display: inline-block;
    text-decoration: none;
}

.mw-tab.active {
    background: #fff;
    border-color: #a7d7f9;
    color: #252525;
    font-weight: normal;
    position: relative;
    top: 1px;
}

.mw-tab.red {
    color: #ba0000;
}

/* ================================
   Vector 2010 sidebar + page layout
   ================================ */

.mw-page {
    display: flex;
    align-items: flex-start;
}

.mw-sidebar {
    width: 165px;
    flex-shrink: 0;
    padding: 8px 8px 20px 10px;
    font-size: 0.75em;
}

/* placeholder logo */
.mw-logo {
    width: 135px;
    height: 135px;
    margin: 4px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #72777d;
    font-weight: bold;
    font-size: 1.3em;
    background: #fff;
    border: 1px solid #c8ccd1;
    border-radius: 50%;
}

.mw-portal h3 {
    color: #4d4d4d;
    font-size: 0.95em;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
    margin: 12px 0 5px;
    padding-bottom: 2px;
}

.mw-portal ul {
    list-style: none;
    margin: 0 0 10px;
}

.mw-portal li {
    margin: 4px 0;
    line-height: 1.4;
}

.mw-main {
    flex: 1;
    min-width: 0;
    padding-right: 12px;
}

.mw-search {
    display: flex;
    align-items: center;
    margin: 4px 0 4px 12px;
}

.mw-search input {
    width: 165px;
    padding: 3px 8px;
    border: 1px solid #aaa;
    border-radius: 2px;
    background: #fff;
    font-size: 0.9em;
    font-family: sans-serif;
}

.mw-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #a7d7f9;
    border-top: none;
    min-height: 500px;
}

.mw-page-title {
    font-family: 'Linux Libertine', 'Georgia', 'Times', serif;
    font-size: 1.8em;
    font-weight: normal;
    border-bottom: 1px solid #aaa;
    padding-bottom: 5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* ================================
   Index metadata table
   ================================ */

.index-metadata {
    width: 100%;
    max-width: 700px;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.index-metadata td {
    padding: 6px 10px;
    border: 1px solid #aaa;
    vertical-align: top;
    background: #fff;
}

.index-metadata td:first-child {
    background: #eaecf0;
    font-weight: bold;
    width: 100px;
}

.index-metadata .thumbnail-cell img {
    max-width: 200px;
    border: 1px solid #aaa;
    padding: 4px;
    background: #fff;
}

/* ================================
   Bulk OCR section
   ================================ */

.pages-header {
    font-family: 'Linux Libertine', 'Georgia', 'Times', serif;
    font-size: 1.5em;
    font-weight: normal;
    border-bottom: 1px solid #aaa;
    padding-bottom: 5px;
    margin: 24px 0 12px;
}

.bulk-ocr-section {
    border: 1px dashed #aaa;
    padding: 12px;
    margin: 12px 0;
    background: #fff;
}

.bulk-ocr-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
    border: 1px solid #aaa;
    border-radius: 2px;
    font-size: 0.9em;
    cursor: pointer;
    color: #252525;
    font-family: sans-serif;
}

.bulk-ocr-button:hover {
    background: linear-gradient(to bottom, #fafafa 0%, #d0d0d0 100%);
    border-color: #888;
}

.bulk-ocr-warning {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fef6e7;
    border: 1px solid #fc3;
    font-size: 0.85em;
    color: #252525;
    display: flex;
    gap: 8px;
    align-items: center;
}

.bulk-ocr-warning::before {
    content: "⚠";
    color: #ac6600;
    font-size: 1.2em;
}

/* ================================
   Page number list
   ================================ */

.pagelist {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    font-size: 0.85em;
}

.pagelist-number {
    display: inline-block;
    padding: 2px 6px;
    background: #fee7e6;
    color: #ba0000;
    text-decoration: none;
    border: 1px solid #f8d7d3;
    cursor: pointer;
}

.pagelist-number:hover {
    text-decoration: underline;
    border-color: #aaa;
}

/* ================================
   Modal overlay
   ================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #fff;
    width: 95%;
    max-width: 1300px;
    height: 90vh;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #aaa;
}

/* ================================
   Modal header - Vector 2010 style
   ================================ */

.modal-header {
    background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 100%);
    border-bottom: 1px solid #aaa;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
}

.modal-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #252525;
    font-family: 'Linux Libertine', 'Georgia', 'Times', serif;
}

.modal-title-sub {
    font-size: 0.8em;
    color: #54595d;
    margin-top: 2px;
    font-family: sans-serif;
    font-weight: normal;
}

.modal-header-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

.header-btn {
    padding: 4px 10px;
    background: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
    border: 1px solid #aaa;
    border-radius: 2px;
    font-size: 0.85em;
    cursor: pointer;
    color: #252525;
    font-family: sans-serif;
}

.header-btn:hover {
    background: linear-gradient(to bottom, #fafafa 0%, #d0d0d0 100%);
}

.header-btn.primary {
    background: linear-gradient(to bottom, #4c8fd6 0%, #3366cc 100%);
    color: #fff;
    border-color: #2a4b8d;
    font-weight: bold;
}

.header-btn.primary:hover {
    background: linear-gradient(to bottom, #5c9fe6 0%, #4376dc 100%);
}

.header-btn.primary:disabled {
    background: #ccc;
    color: #888;
    border-color: #aaa;
    cursor: not-allowed;
}

.header-btn.cancel {
    color: #ba0000;
}

/* ================================
   Safety banner
   ================================ */

.safety-banner {
    background: #fef6e7;
    border-bottom: 1px solid #fc3;
    padding: 8px 14px;
    font-size: 0.85em;
    color: #252525;
    display: flex;
    gap: 8px;
    align-items: center;
}

.safety-banner::before {
    content: "⚠";
    color: #ac6600;
    font-size: 1.3em;
}

/* ================================
   Status bar
   ================================ */

.status-bar {
    padding: 6px 14px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 12px;
    font-size: 0.8em;
    align-items: center;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 0.95em;
}

.status-chip.pending {
    background: #eaecf0;
    color: #54595d;
}

.status-chip.approved {
    background: #d5fdf4;
    color: #14866d;
}

.status-chip.rejected {
    background: #fee7e6;
    color: #d33;
}

.status-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #eaecf0;
    border-radius: 3px;
    overflow: hidden;
    margin-left: 12px;
    max-width: 300px;
}

.progress-fill {
    height: 100%;
    background: #14866d;
    transition: width 0.2s;
}

/* ================================
   Main body: Booklet-style layout
   ================================ */

.modal-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* Left sidebar - page list (BookletLayout style) */
.page-sidebar {
    width: 200px;
    background: #f6f6f6;
    border-right: 1px solid #aaa;
    overflow-y: auto;
    padding: 8px 0;
}

.sidebar-header {
    padding: 6px 12px;
    font-size: 0.75em;
    color: #54595d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.sidebar-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eaecf0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    color: #0645ad;
}

.sidebar-item:hover {
    background: #eaf3ff;
}

.sidebar-item.active {
    background: #d9edff;
    border-left: 3px solid #3366cc;
    padding-left: 9px;
    font-weight: bold;
    color: #252525;
}

.sidebar-item .page-num {
    flex: 1;
}

.sidebar-item .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.sidebar-item .status-dot.approved { background: #14866d; }
.sidebar-item .status-dot.rejected { background: #d33; }
.sidebar-item .status-dot.error { background: #d33; border: 2px solid #fee7e6; }

/* Content pane */
.content-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav-bar {
    padding: 6px 14px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
}

.nav-btn {
    background: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
    border: 1px solid #aaa;
    border-radius: 2px;
    padding: 3px 10px;
    font-size: 0.85em;
    cursor: pointer;
    color: #252525;
    position: relative;
    font-family: sans-serif;
}

.nav-btn:hover:not(:disabled) {
    background: linear-gradient(to bottom, #fafafa 0%, #d0d0d0 100%);
}

.nav-btn:disabled {
    color: #aaa;
    cursor: not-allowed;
    background: #f6f6f6;
}

.nav-btn .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #252525;
    color: #fff;
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 0.85em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 10;
}

.nav-btn:hover:not(:disabled) .tooltip {
    opacity: 1;
}

.page-indicator {
    font-size: 0.9em;
    font-weight: bold;
    color: #252525;
}

.page-indicator-sub {
    font-size: 0.85em;
    color: #54595d;
    font-weight: normal;
    margin-left: 6px;
}

/* Split view: text and image */
.split-view {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.text-pane {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.pane-header {
    font-size: 0.75em;
    color: #54595d;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.ocr-textarea {
    flex: 1;
    width: 100%;
    padding: 10px;
    font-family: monospace;
    font-size: 0.9em;
    line-height: 1.6;
    border: 1px solid #aaa;
    resize: none;
    color: #252525;
    background: #fff;
}

.ocr-textarea:focus {
    outline: none;
    border-color: #3366cc;
    box-shadow: 0 0 0 2px rgba(51, 102, 204, 0.2);
}

.ocr-textarea.error {
    background: #fef6f5;
    border-color: #d33;
}

.image-pane {
    flex: 1;
    padding: 12px;
    background: #f6f6f6;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-pane img {
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #aaa;
    padding: 4px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.error-banner {
    padding: 10px 14px;
    background: #fef6e7;
    border: 1px solid #fc3;
    color: #6c4200;
    font-size: 0.85em;
    margin-bottom: 8px;
    display: none;
}

.error-banner.visible {
    display: block;
}

/* ================================
   Modal footer
   ================================ */

.modal-footer {
    padding: 8px 14px;
    background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 100%);
    border-top: 1px solid #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footer-left {
    font-size: 0.8em;
    color: #54595d;
}

.footer-right {
    display: flex;
    gap: 6px;
}

.btn {
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 0.9em;
    font-family: sans-serif;
    cursor: pointer;
    border: 1px solid #aaa;
    background: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
    color: #252525;
}

.btn:hover:not(:disabled) {
    background: linear-gradient(to bottom, #fafafa 0%, #d0d0d0 100%);
}

.btn-approve {
    background: linear-gradient(to bottom, #4c8fd6 0%, #3366cc 100%);
    color: #fff;
    border-color: #2a4b8d;
    font-weight: bold;
}

.btn-approve:hover:not(:disabled) {
    background: linear-gradient(to bottom, #5c9fe6 0%, #4376dc 100%);
}

.btn-approve:disabled {
    background: #ccc;
    color: #888;
    border-color: #aaa;
    cursor: not-allowed;
}

.btn-reject {
    background: linear-gradient(to bottom, #fff 0%, #f0e0e0 100%);
    color: #d33;
    border-color: #d33;
}

.btn-reject:hover {
    background: linear-gradient(to bottom, #fef6f5 0%, #f8d0d0 100%);
}

/* ================================
   Confirmation warning dialog
   ================================ */

.confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.confirm-overlay.open {
    display: flex;
}

.confirm-box {
    background: #fff;
    padding: 20px;
    border-radius: 3px;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #aaa;
}

.confirm-box h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #252525;
    font-family: 'Linux Libertine', 'Georgia', serif;
    font-weight: normal;
    border-bottom: 1px solid #aaa;
    padding-bottom: 6px;
}

.confirm-box p {
    font-size: 0.9em;
    color: #252525;
    margin-bottom: 14px;
    line-height: 1.5;
}

.confirm-box .btns {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

/* ================================
   Additions: WikiEditor toolbar mock
   ================================ */

.wiki-editor-toolbar {
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #f6f6f6 0%, #e0e0e0 100%);
    border: 1px solid #aaa;
    border-bottom: none;
    padding: 3px 6px;
    gap: 2px;
    flex-wrap: wrap;
}

.toolbar-group {
    display: flex;
    gap: 1px;
    padding: 0 4px;
    border-right: 1px solid #ccc;
}

.toolbar-group:last-child {
    border-right: none;
}

.toolbar-btn {
    width: 24px;
    height: 22px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 12px;
    color: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-family: sans-serif;
}

.toolbar-btn:hover {
    background: #fff;
    border-color: #aaa;
}

.toolbar-btn.bold { font-weight: bold; }
.toolbar-btn.italic { font-style: italic; }
.toolbar-btn.underline { text-decoration: underline; }

.toolbar-select {
    height: 22px;
    padding: 0 4px;
    border: 1px solid #ccc;
    font-size: 11px;
    background: #fff;
    border-radius: 2px;
    font-family: sans-serif;
}

.ocr-textarea {
    border-top: none !important;
}

/* Not-proofread status banner (matches Wikisource) */

.status-banner {
    padding: 8px 12px;
    background: #fee7e6;
    border: 1px solid #ba0000;
    color: #ba0000;
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 6px;
}

.status-banner.approved {
    background: #d5fdf4;
    border-color: #14866d;
    color: #14866d;
}

/* ================================
   Page number color states
   ================================ */

.pagelist-number.pending {
    background: #fee7e6;
    color: #ba0000;
    border-color: #f8d7d3;
}

.pagelist-number.approved {
    background: #fffde7;
    color: #886600;
    border-color: #ffe066;
}

.pagelist-number.rejected {
    background: #fee7e6;
    color: #ba0000;
    border-color: #f8d7d3;
    text-decoration: line-through;
}

/* ================================
   Persistence info - more visible
   ================================ */

.persistence-info {
    margin-top: 10px;
    padding: 10px 14px;
    background: #d5fdf4;
    border-left: 4px solid #14866d;
    font-size: 0.85em;
    color: #14866d;
    display: none;
    border-radius: 0 3px 3px 0;
}

.persistence-info.visible {
    display: block;
}

.persistence-info strong {
    display: block;
    margin-bottom: 4px;
    color: #14866d;
}

/* ================================
   Sidebar with nav at bottom (Booklet pattern)
   ================================ */

.page-sidebar-wrapper {
    width: 200px;
    background: #f6f6f6;
    border-right: 1px solid #aaa;
    display: flex;
    flex-direction: column;
}

.page-sidebar-wrapper .page-sidebar {
    width: 100%;
    border-right: none;
    flex: 1;
    overflow-y: auto;
}

.sidebar-nav {
    border-top: 1px solid #aaa;
    padding: 8px;
    background: linear-gradient(to bottom, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    gap: 6px;
    justify-content: space-between;
}

.sidebar-nav .nav-btn {
    flex: 1;
    padding: 4px 8px;
    font-size: 0.8em;
    text-align: center;
    white-space: nowrap;
}

.sidebar-nav .nav-btn .tooltip {
    bottom: auto;
    top: 100%;
    transform: translateX(-50%) translateY(6px);
}

/* ================================
   Content header - lighter
   ================================ */

.content-header {
    padding: 8px 14px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.content-header .page-indicator {
    font-size: 0.95em;
}

/* ================================
   OOUI-like message dialog
   Matches OO.ui.MessageDialog appearance
   ================================ */

.message-dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.message-dialog-overlay.open {
    display: flex;
}

.message-dialog {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    border: 1px solid #a2a9b1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: message-dialog-appear 0.15s ease-out;
}

@keyframes message-dialog-appear {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.message-dialog-body {
    padding: 24px;
}

.message-dialog-title {
    font-family: 'Linux Libertine', 'Georgia', serif;
    font-size: 1.15em;
    font-weight: bold;
    color: #202122;
    margin-bottom: 12px;
    line-height: 1.4;
}

.message-dialog-content {
    font-size: 0.9em;
    color: #202122;
    line-height: 1.6;
    margin-bottom: 8px;
}

.message-dialog-content ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.message-dialog-content ul li {
    margin: 4px 0;
    list-style-type: disc;
}

.message-dialog-footer {
    border-top: 1px solid #c8ccd1;
    display: flex;
    justify-content: stretch;
}

.message-dialog-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: #f8f9fa;
    color: #202122;
    font-size: 0.95em;
    font-family: sans-serif;
    cursor: pointer;
    border-right: 1px solid #c8ccd1;
}

.message-dialog-btn:last-child {
    border-right: none;
}

.message-dialog-btn:hover {
    background: #eaecf0;
}

.message-dialog-btn.primary {
    background: #3366cc;
    color: #fff;
    font-weight: bold;
}

.message-dialog-btn.primary:hover {
    background: #447ff5;
}

.message-dialog-btn.destructive {
    color: #d33;
}

.message-dialog-btn.destructive:hover {
    background: #fee7e6;
}

/* ================================
   OCR error state - allow recovery
   ================================ */

.error-banner-actions {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.retry-btn {
    padding: 3px 10px;
    background: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
    border: 1px solid #aaa;
    border-radius: 2px;
    font-size: 0.85em;
    cursor: pointer;
    color: #252525;
    font-family: sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.retry-btn:hover {
    background: linear-gradient(to bottom, #fafafa 0%, #d0d0d0 100%);
}

.retry-btn.retrying {
    background: #eaf3ff;
    color: #3366cc;
    pointer-events: none;
}

.error-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85em;
    color: #6c4200;
    font-style: italic;
}

