/* Base Typography */
:root {
    --md-text-font: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, 
                   "Helvetica Neue", Arial, sans-serif;
    --md-code-font: "SFMono-Regular", Consolas, "Liberation Mono", 
                   Menlo, monospace;
}

/* Page Layout */
.md-main {
    background-color: #f8f8f8;
}

.md-main__inner {
    max-width: 80rem;
    padding-top: 1.5rem;
}

/* Headers */
h1 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.3em;
}

h2 {
    color: #2980b9;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.2em;
}

h3 {
    color: #16a085;
}

/* Code Blocks */
pre code {
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

code {
    background-color: #f5f5f5;
    color: #c7254e;
    padding: 0.2em 0.4em;
    border-radius: 3px;
}

/* Tables */
.md-typeset table:not([class]) {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}

.md-typeset table:not([class]) th {
    background-color: #3498db;
    color: white;
}

.md-typeset table:not([class]) tr:nth-child(even) {
    background-color: #f8f8f8;
}

/* Navigation */
.md-nav__link--active {
    color: #e74c3c;
    font-weight: 600;
}

.md-nav__link:hover {
    color: #3498db;
}

/* Admonitions (Note/Warning boxes) */
.md-typeset .admonition {
    border-radius: 5px;
}

.md-typeset .admonition-title {
    font-weight: 600;
}

.md-typeset .admonition.note {
    border-left-color: #3498db;
}

.md-typeset .admonition.warning {
    border-left-color: #e74c3c;
}

/* Security-specific Highlights */
.security-tip {
    background-color: #e8f4fc;
    border-left: 4px solid #3498db;
    padding: 1em;
    margin: 1em 0;
    border-radius: 0 4px 4px 0;
}

.security-warning {
    background-color: #fde8e8;
    border-left: 4px solid #e74c3c;
    padding: 1em;
    margin: 1em 0;
    border-radius: 0 4px 4px 0;
}

/* Footer */
.md-footer {
    background-color: #2c3e50;
    color: white;
}

.md-footer-meta {
    background-color: #1a252f;
}

/* Responsive Adjustments */
@media screen and (max-width: 76.1875em) {
    .md-nav--primary .md-nav__title {
        background-color: #2c3e50;
        color: white;
    }
}