/* Custom Heading Colors for Obsidian */

/* H1 - Blue (Primary) */
.markdown-preview-view h1,
.cm-header-1 {
    color: #1E90FF !important;
    /* Dodger Blue */
}

/* H2 - Green (Secondary) */
.markdown-preview-view h2,
.cm-header-2 {
    color: #299929 !important;
    /* Lime Green */
}

/* H3 - Golden Orange (Accent) */
.markdown-preview-view h3,
.cm-header-3 {
    color: darkslategray !important;
    /* Dark Slate Gray */
}

/* quote-style.css — highlight the Quote of the Day */
/* .markdown-preview-view blockquote {
    font-size: 1.8em;
    color: #1e8c3a;
    font-style: italic;
    border-left: 6px solid #1e8c3a;
    background-color: #f4fff6;
    padding: 0.5em 1em;
    margin: 1em 0;
} */

/* quote-style.css — highlight the Quote of the Day */
blockquote {
    font-size: 1.8em;
    color: red;
    font-style: italic;
    border-left: 6px solid #1e8c3a;
    background-color: #f4fff6;
    padding: 0.5em 1em;
    margin: 1em 0;
}

/* Button Styles */
button {
    background-color: blue !important;
    color: white !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}