/* --- Custom Post Styling --- */

/* Post Headings - Deep Red with Underline */
h2[post="post"] {
    font-size: 18px;
    color: #d32f2f; /* Modern Deep Red */
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ffcdd2; /* Light Red Line */
    padding-bottom: 4px;
    font-family: 'Segoe UI', sans-serif;
}

/* Bold Text - Burnt Orange */
b[bold="bold"] {
    font-size: 14px;
    color: #e65100; /* Unique Burnt Orange */
    font-weight: 700;
}

/* Strong Text - Vibrant Purple */
strong[strong="strong"] {
    font-size: 14px;
    color: #7b1fa2; /* Deep Purple */
    font-weight: 700;
}

/* FAQ Heading - Clean Card Style */
h2[faq="faq"] {
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    font-size: 19px;
    margin: 25px 0 15px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    border-top: 3px solid #1976d2; /* Blue Accent Top */
    color: #333;
}

/* FAQ Questions - Indigo */
strong[question="question"] {
    font-size: 15px;
    color: #303f9f; /* Indigo Blue */
    display: block;
    margin-top: 12px;
    text-shadow: none;
    font-weight: 600;
}

/* --- Professional Markdown Table Styles --- */

/* Container for scrolling on mobile */
.md-table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    background: #fff;
}

/* Main Table */
.md-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Table Header - Modern Gradient */
.md-table th {
    padding: 15px 18px;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%); /* Deep Blue Gradient */
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid #002171;
}

/* Table Cells */
.md-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #eceff1;
    color: #37474f;
    text-align: left;
    line-height: 1.5;
}

/* Zebra Striping - Very Light Blue for Even Rows */
.md-table tr:nth-child(even) td {
    background-color: #f5f9fc;
}

.md-table tr:nth-child(odd) td {
    background-color: #ffffff;
}

/* First Column Bold */
.md-table td:first-child {
    font-weight: 600;
    color: #1c1e21;
}

/* Hover Effect */
.md-table tr:hover td {
    background-color: #e3f2fd !important; /* Highlight Blue */
    transition: background-color 0.2s ease;
    cursor: default;
}

/* Remove border from last row */
.md-table tr:last-child td {
    border-bottom: none;
}