/* Custom Pagination Styling */
.pagination-container nav div[role="navigation"] span[aria-current="page"] > span {
    background-color: #1e2245 !important; /* Dark Navy from Header */
    border-color: #1e2245 !important;
    color: white !important;
}

.pagination-container nav div[role="navigation"] a {
    color: #1e2245 !important;
    transition: all 0.3s ease;
}

.pagination-container nav div[role="navigation"] a:hover {
    background-color: #0099ff !important; /* Blue from Search Button */
    color: white !important;
    border-color: #0099ff !important;
}

/* Fix for mobile pagination arrows */
.pagination-container svg {
    width: 20px;
    height: 20px;
}


/* Add to your CSS file */
.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e2245; /* Dark Navy */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.prose blockquote {
    border-left: 4px solid #0099ff; /* Your Blue */
    padding-left: 1rem;
    font-style: italic;
    color: #4b5563;
    margin: 2rem 0;
}

.post-content-area h1,
.post-content-area h2,
.post-content-area h3,
.post-content-area h4 {
    font-weight: 700;
    color: #1e2245;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content-area p {
    margin-bottom: 1rem;
}

.post-content-area ul,
.post-content-area ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-content-area ul {
    list-style: disc;
}

.post-content-area ol {
    list-style: decimal;
}

.post-content-area a {
    color: #2563eb;
    text-decoration: underline;
}

.post-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    overflow-x: auto;
    display: block;
}

.post-content-area th,
.post-content-area td {
    border: 1px solid #d1d5db;
    padding: 12px;
    text-align: left;
}

.post-content-area th {
    background: #f3f4f6;
    font-weight: 600;
}

.post-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-content-area blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
}
