.screenshot-theme {
    --accent: #1a73e8;
    --text-main: black;
    --bg-main: #ffffff;
    --header-footer-bg: #ffffff;
    --borders: #e0e0e0;
}

.NoteDiv.screenshot-theme {
    background-color: var(--bg-main);
}

.DocDivFor3D.screenshot-theme {
    background-color: var(--bg-main);
}


.DocumentColumn.screenshot-theme {
    background-color: var(--bg-main);
}

.DocumentSidePanel.screenshot-theme {
    background-color: var(--bg-main);
}

.screenshot-theme .NoteDiv {
    background-color: var(--bg-main);
}





.screenshot-theme .DocumentTopPanel {
    background-color: var(--header-footer-bg);
    /* border-top: 1px solid #e0e0e0; */
    border-bottom: 1px solid var(--borders);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* padding: 1rem 2rem; */
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.screenshot-theme .TopPanelTitle {
    color: var(--accent);
}

.screenshot-theme .TopPanelOptionLink {
    color: var(--accent);
}

.screenshot-theme .DocumentBottomPanel {
    font-family: "Helvetica Neue", Arial, sans-serif;
    border-top: 1px solid var(--borders);
    background-color: var(--header-footer-bg);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.screenshot-theme .RightSandwichLine {
    background-color: var(--accent);
}

.screenshot-theme .LeftSandwichLine {
    background-color: var(--accent);
}


.screenshot-theme .DocumentDropDownMenu {
    background-color: var(--header-footer-bg);
}

.screenshot-theme .FooterSectionTitle {
    color: #333;
}

.screenshot-theme .FooterOptionLink {
    color: var(--accent);
}

.screenshot-theme .DocumentBottomPanelBottomMessage {
    color: #595757;
}

.screenshot-theme div {
    color: var(--text-main);
}

.screenshot-theme .NotePresentationDiv {

    font-family: "Georgia", "Times New Roman", serif;
    /* Classic reading font */
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-main);
    padding: 2rem;

}


.screenshot-theme ol,
ul {
    padding-inline-start: 10px;
}


/* Paragraphs */
.screenshot-theme p {
    margin: 1em 0;
    font-size: 1.05em;
    color: #333;
}

/* Headings */
.screenshot-theme h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin: 1.6em 0 0.6em;
    color: #1a1a1a;
}

.screenshot-theme h1 {
    font-size: 2.2em;
    /* border-bottom: 2px solid #e0e0e0; */
    padding-bottom: 0.3em;
}

.screenshot-theme h2 {
    font-size: 1.8em;
    margin-top: 2em;
}

.screenshot-theme h3 {
    font-size: 1.4em;
    margin-top: 1.5em;
    color: #444;
}

/* Links */
.screenshot-theme a {
    color: var(--accent);
    text-decoration: none;
}

.screenshot-theme a:hover {
    text-decoration: underline;
}






/* Code snippets */
.screenshot-theme pre,
code {
    font-family: "Fira Code", monospace;
    background-color: #f4f4f4;
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

.screenshot-theme pre {
    padding: 1em;
    overflow-x: auto;
}


.screenshot-theme blockquote {
    position: relative;
    margin: 1em 0;
    padding: 1em 1.2em;
    padding-left: 2em;
    /* space for the quote mark */
    background-color: #ececec;
    border-left: 5px solid #4a90e2;
    border-radius: 6px;
    color: #333;
    font-style: italic;
    font-family: Georgia, serif;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Add a decorative quote mark */
.screenshot-theme blockquote::before {

    position: absolute;
    left: 10px;
    top: 0;
    font-size: 3em;
    line-height: 1;
    color: #4a90e2;
    font-family: Georgia, serif;
}

.screenshot-theme blockquote ol {
    padding-left: 10px;
    padding-right: 10px;
    list-style-position: inside;
}


/* Basic table styling */
.screenshot-theme table {
    /* width: 100%; */
    border-collapse: collapse;
    /* remove double borders */
    margin: 1.5em 0;
    font-family: "Georgia", serif;
    font-size: 16px;
    line-height: 1.5;
    color: #2c2c2c;
}

/* Table header */
.screenshot-theme th {
    background-color: #4a90e2;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #357ABD;
}

/* Table cells */
.screenshot-theme td {
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
}

/* Alternating row colors */
.screenshot-theme tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect for rows */
.screenshot-theme tr:hover {
    background-color: #eef4fc;
}

.screenshot-theme .load-button {
    color: white;
    background-color: #357ABD;
}

.screenshot-theme .media-card {
    display: inline-block;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 6px 0;
    background-color: #f0f8ff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.screenshot-theme .media-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}