/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .header-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo i {
    color: #38a169;
    font-size: 2rem;
}

.tagline {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 400;
}

/* Search Section */
.search-section {
    margin-bottom: 3rem;
}

.search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 1.1rem;
}

#searchInput {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

#searchInput:focus {
    outline: none;
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
}

.filter-btn:hover {
    border-color: #38a169;
    color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.2);
}

.filter-btn.active {
    background: #38a169;
    border-color: #38a169;
    color: white;
}



/* Responsive grid layouts - fixed card sizes with adaptive columns */
.campsites-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    padding: 0 2rem;
}

/* Grid layouts for different card counts - fixed card sizes */
.campsites-grid.grid-6 {
    grid-template-columns: repeat(3, 350px);
    justify-content: center;
}

.campsites-grid.grid-9 {
    grid-template-columns: repeat(3, 350px);
    justify-content: center;
}

.campsites-grid.grid-15 {
    grid-template-columns: repeat(3, 350px);
    justify-content: center;
}

/* Responsive breakpoints for different screen sizes */
@media (max-width: 1200px) {

    .campsites-grid.grid-6,
    .campsites-grid.grid-9,
    .campsites-grid.grid-15 {
        grid-template-columns: repeat(2, 350px);
    }
}

@media (max-width: 800px) {

    .campsites-grid.grid-6,
    .campsites-grid.grid-9,
    .campsites-grid.grid-15 {
        grid-template-columns: repeat(1, 350px);
    }
}

/* Responsive breakpoints for different screen sizes */
@media (max-width: 1600px) {
    .campsites-grid {
        max-width: 1400px;
    }
}

@media (max-width: 1400px) {
    .campsites-grid {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .campsites-grid {
        max-width: 1000px;
    }
}

@media (max-width: 1000px) {
    .campsites-grid {
        max-width: 800px;
    }
}

@media (max-width: 800px) {
    .campsites-grid {
        max-width: 600px;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .campsites-grid {
        max-width: 400px;
        padding: 0 1rem;
    }
}

@media (max-width: 400px) {
    .campsites-grid {
        max-width: 350px;
        padding: 0 0.5rem;
    }
}

.campsite-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.campsite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.campsite-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.campsite-content {
    padding: 1.5rem;
}

.campsite-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.campsite-card:nth-child(4n+1) .campsite-name {
    color: #8B7355;
    /* Warm earth brown */
}

.campsite-card:nth-child(4n+2) .campsite-name {
    color: #5D7A8C;
    /* Soft water blue-gray */
}

.campsite-card:nth-child(4n+3) .campsite-name {
    color: #6B8E6B;
    /* Forest green */
}

.campsite-card:nth-child(4n+4) .campsite-name {
    color: #7A7A7A;
    /* Neutral gray */
}

.campsite-location {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campsite-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.campsite-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.campsite-more-activities {
    margin-top: 0.5rem;
}

.campsite-more-activities .activity-tag {
    color: #2c7a7b;
}

.activity-tag {
    background: #e6fffa;
    color: #38a169;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Campsite Detail */
.campsite-detail {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.campsite-detail.hidden {
    display: none;
}

.back-btn {
    background: #38a169;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #2f855a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.detail-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.detail-info h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.detail-info .location {
    color: #718096;
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.detail-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-stats .stat {
    font-size: 1rem;
    font-weight: 500;
}

.detail-activities {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.detail-activities h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-activities h3 i {
    color: #38a169;
    font-size: 1rem;
}

.activities-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.activities-display .activity-tag {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.activities-display .activity-tag:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.no-activities {
    color: #718096;
    font-style: italic;
    font-size: 0.9rem;
}

.detail-amenities {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.detail-amenities h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-amenities h3 i {
    color: #38a169;
    font-size: 1rem;
}

.amenities-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenities-display .amenity-tag {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.amenities-display .amenity-tag:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.no-amenities {
    color: #718096;
    font-style: italic;
    font-size: 0.9rem;
}

.detail-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.detail-section.full-width {
    grid-column: 1 / -1;
}

.detail-section {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border-top: 3px solid #38a169;
    border-bottom: 3px solid #38a169;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: start;
    height: fit-content;
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.1);
}

.detail-section:hover {
    background: #f0f4f8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(56, 161, 105, 0.15);
    border-top-color: #2f855a;
    border-bottom-color: #2f855a;
}

.detail-section h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-section h3 i {
    color: #38a169;
}

/* Deactive 'accordian' data */
.activity-gear-container {
    display: none !important;
}

/* Collapsible Section Styles */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 1rem 0;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.section-header .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    position: relative;
}

.item-count {
    background: #38a169;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(56, 161, 105, 0.2);
}

.section-header:hover .item-count {
    background: #2f855a;
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(56, 161, 105, 0.3);
}

.section-header:hover {
    background: rgba(56, 161, 105, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.15);
}

/* Light green background when collapsed and hovered */
.section-header:not(.expanded):hover {
    background: rgba(200, 255, 200, 0.4);
}

.section-header:active {
    transform: translateY(-1px) scale(0.98);
}

.section-header h3 {
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.section-header:hover h3 {
    color: #38a169;
}

.collapse-arrow {
    color: #718096;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    margin-left: 0.5rem;
}

.section-header:hover .collapse-arrow {
    color: #38a169;
    transform: scale(1.15);
}

.section-header.expanded .collapse-arrow {
    transform: rotate(90deg) scale(1.1);
    color: #38a169;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    position: relative;
    transform-origin: top center;
}

.collapsible-content.expanded {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0) scale(1);
    margin-top: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenities-list,
.activities-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.packing-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .packing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .packing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Activity Container Styles */
.activity-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-gear-container {
    margin-left: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid #e2e8f0;
    overflow: hidden;
}

.activity-gear-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.activity-gear-items .inventory-item {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.activity-gear-items .inventory-item:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateX(4px);
}

.amenity-item,
.activity-item,
.packing-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.amenity-item i,
.activity-item i,
.packing-item i {
    color: #38a169;
    width: 20px;
}

.packing-category {
    margin-bottom: 1rem;
}

.packing-category h4 {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Print/Save Button Styles */
.print-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 12px rgba(66, 153, 225, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    height: 100%;
    /* Ensures vertical alignment with .back-btn */
    position: relative;
    overflow: hidden;
}

.print-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.print-btn:hover::before {
    left: 100%;
}

.print-btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.print-btn:focus {
    outline: 2px solid #3182ce;
    outline-offset: 2px;
    box-shadow:
        0 4px 12px rgba(66, 153, 225, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 4px rgba(66, 153, 225, 0.2);
}

.print-btn:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(66, 153, 225, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.print-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

.print-btn:active {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4a8a 100%);
    transform: translateY(0);
    box-shadow:
        0 2px 8px rgba(66, 153, 225, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.print-btn:active i {
    transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 2rem;
    }



    .detail-header {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .detail-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 2rem;
    color: #718096;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    border-top-color: #38a169;
    animation: spin 1s ease-in-out infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth transitions */
.campsite-card,
.filter-btn,
.back-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
button:focus,
input:focus {
    outline: 2px solid #38a169;
    outline-offset: 2px;
}

/* Activity and Inventory Buttons */
.interactive-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    border: 1px solid #cbd5e0;
    border-radius: 999px;
    background-color: #f7fafc;
    color: #2d3748;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-button:hover {
    background-color: #edf2f7;
    transform: scale(1.05);
}

.interactive-button:active {
    transform: scale(0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.interactive-button.active {
    background-color: #4299e1;
    color: white;
    border-color: #3182ce;
}

/* Display Controls */
.display-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.display-options {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.display-options label {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.cards-selector-group {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card-option {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: #4a5568;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

.card-option:hover {
    background: #f7fafc;
    color: #38a169;
    transform: translateY(-1px);
}

.card-option.active {
    background: #38a169;
    color: white;
    box-shadow: 0 2px 8px rgba(56, 161, 105, 0.3);
}

.card-option:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.option-divider {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
    margin: 0 2px;
}

.results-info {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Pagination */
.pagination-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #38a169;
    color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.page-number:hover {
    border-color: #38a169;
    color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.2);
}

.page-number.active {
    background: #38a169;
    border-color: #38a169;
    color: white;
}

.page-number.ellipsis {
    cursor: default;
    border: none;
    background: transparent;
}

.page-number.ellipsis:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .display-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .page-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .pagination-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .page-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}