/* Clean & Flashy Comic Navigation */
.navigation.post-navigation {
    margin: 40px 0 !important;
}

.nav-links {
    display: flex !important;
    justify-content: space-between !important;
}

/* Style the links directly */
.nav-links a {
    background: #005826 !important; /* Your Green */
    color: #ebb600 !important; /* Flashy Yellow */
    padding: 12px 20px !important;
    border: 3px solid #000 !important;
    border-radius: 8px;
    box-shadow: 4px 4px 0px #000;
    text-decoration: none !important;
    font-size: 0 !important; /* Hide original text */
    display: inline-block !important;
    transition: all 0.2s ease;
}

/* Re-insert the words using the ::before selector for both */
.nav-previous a::before {
    content: "◀ PREV" !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #ebb600 !important;
}

.nav-next a::before {
    content: "NEXT ▶" !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #ebb600 !important;
}

/* Hover States */
.nav-links a:hover {
    background: #ebb600 !important;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.nav-links a:hover::before {
    color: #005826 !important;
}

/* Hide theme titles and extra spans */
.nav-post-title, .meta-nav, .nav-links span {
    display: none !important;
}