/* =========================================
   Pagination / Multi-Step Navigation
   ========================================= */

/* Container for the Next/Prev buttons */
.dt-pagination-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container to keep Loader and Button together on the right side */
.dt-nav-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* The Loading Bar */
.dt-loader-bar {
    width: 100px;
    height: 4px;
    background: #edf2f7;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    display: none;
}

.dt-loader-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    height: 100%;
    width: 50%;
    background: #3182ce;
    border-radius: 2px;
    animation: dt-slide 1s infinite linear;
}

@keyframes dt-slide {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* Optional: Fade out the button slightly when loading */
.dt-loading-active {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
}

/* =========================================
   GravityView Specific Overrides
   ========================================= */

/* Hide the default GravityView edit title since the wrapper has its own header */
.form-panel .gv-edit-entry-title {
    display: none !important;
}