/* Core Layout Settings */
body {
    background-color: #f4f7f6;
    color: #222222;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "GNU Unifont", Verdana, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Midnight Blue Banner Headers */
.ma-header {
    background-color: #0b2545; /* Midnight Blue */
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #134074;
}
.ma-header .logo {
    font-size: 1.4em;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-family: Georgia, serif;
}
.ma-nav span {
    margin-left: 15px;
    font-size: 0.9em;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ma-nav span:hover {
    color: #8da9c4;
}

/* Dashboard & Layout Cards */
.dashboard-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #d4dcc9;
    border-radius: 4px;
}
h2 {
    color: #0b2545;
    border-bottom: 1px solid #134074;
    padding-bottom: 8px;
    margin-top: 0;
}
.work-index {
    list-style: none;
    padding: 0;
}
.work-blurb {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 1px 2px 4px rgba(0,0,0,0.05);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Links and Tags Styling */
a {
    color: #134074; /* Steel Blue Links */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: #0b2545;
}
.work-title {
    font-size: 1.25em;
    font-weight: bold;
}
.fandoms {
    margin-top: 5px;
    font-size: 0.95em;
}
.tags-module {
    margin: 12px 0;
    font-size: 0.85em;
}
.tags-module span {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

/* Tag Specific Colors */
.warning-tag { color: #b91c1c; font-weight: bold; }
.pairing-tag { color: #0f766e; font-weight: bold; }
.freeform-tag { color: #475569; }

/* Summary & Statistics Modifiers */
.summary-module {
    border-left: 3px solid #8da9c4;
    padding-left: 12px;
    margin: 12px 0;
    font-style: italic;
    color: #334155;
}
.stats-module {
    font-size: 0.85em;
    background: #eeefec;
    padding: 6px 12px;
    border-radius: 3px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #cbd5e1;
}

/* Individual Story Post Meta Box */
.work-meta-table {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    margin: 25px auto;
    max-width: 800px;
    padding: 15px 20px;
    font-size: 0.9em;
    border-radius: 4px;
}
.work-meta-table p {
    margin: 6px 0;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 4px;
}
.work-meta-table p:last-child {
    border-bottom: none;
}

/* Reading Typography Layout */
.story-text {
    max-width: 700px;
    margin: 40px auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15em;
    line-height: 1.65;
    padding: 0 20px;
    color: #1a1a1a;
}
