/* Main Container */
.bb-pagination {
    margin: 60px 0;
    width: 100%;
    display: block;
}

.bb-pagination-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Navigation Buttons */
.bb-pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fdc316;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    height: 52px;
    padding: 0 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: -3px 3px 8px 0 rgba(21, 21, 24, .34);
}



/* Disabled State */
.bb-pagination a.disabled {
    opacity: 0;
    cursor: not-allowed;
}

/* Page Indicator */
.bb-page-indicator {
    padding: 0 20px;
}

.bb-current-page {
    font-size: 30px;
    font-weight: bold;
}

.bb-total-pages {
    font-size: 25px;
    font-weight: bold;
}

/* Icons */
.bb-icon {
    font-size: 16px;
    margin: 0 5px;
}

/* Next Button Specific */
.bb-next {
    min-width: 30%;
    
}

/* Previous Button Specific */
.bb-prev {
    min-width: 30%;
    
}
/* Mobile View */
@media (max-width: 768px) {
    .bb-pagination-inner {
        flex-wrap: wrap;
    }
    
    .bb-page-indicator {
        padding: 10px 0;
        text-align: center;
        display: none;
    }
    
    .bb-pagination a {
        height: 48px;
        font-size: 17px;
        padding: 0 15px;
        margin-top: 10px;
    }
    
    .bb-next {
        min-width: 60%;
        margin-left: auto;
    }
    
    .bb-prev {
         min-width: 15%;
        margin-right: auto;
    }
}

.bb-prev .bb-text {
  display: inline;
}

.bb-prev .bb-icon {
  display: inline;
}

@media only screen and (max-width: 768px) {
  .bb-prev .bb-text {
    display: none;   /* Hide text only inside .bb-prev */
  }

  .bb-prev .bb-icon {
    display: inline; /* Ensure arrow icon stays visible */
  }
}

