/* Simple Step Pagination Styles */
.ssp-pagination {
    text-align: center;
    margin: 1.2em 0;
}
.ssp-pagination a, .ssp-pagination span {
    display: inline-block;
    padding: 10px 26px;
    background: #333;
    color: #fff;
    border-radius: 6px;
    margin: 6px;
    text-decoration: none;
    font-weight: 600;
}
.ssp-pagination a:hover { opacity: 0.9; }
.ssp-pagination .post-page-numbers { background: #333; color: #fff; }

/* Steps container */
.ssp-steps-container {
    border: 1px solid #eee;
    padding: 18px;
    border-radius: 6px;
    background: #fff;
}
.ssp-step-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    gap: 12px;
}
.ssp-prev, .ssp-next {
    padding: 10px 24px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.ssp-prev[disabled], .ssp-next[disabled] { opacity: 0.5; cursor: default; }
.ssp-step-counter { font-weight: 600; color: #333; }
@media (max-width:600px){
    .ssp-step-nav { flex-direction: column; }
    .ssp-prev, .ssp-next { width: 100%; }
}
