/* Videos Page Styles */

/* Page Title */
.videos-page-title {
    font-size: 22px;
}

/* Ad Placeholder */
.ad-placeholder {
    min-height: 100px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pagination Styles */

/* Remove border radius from first and last page links */
.pagination .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* Remove padding-right from pagination */
.pagination {
    padding-right: 0;
}

/* Normal page link styles */
.pagination .page-link {
    color: #ffaa4c;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25rem;
}

/* Hover state */
.pagination .page-link:hover {
    z-index: 2;
    color: #ff8600;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Focus state */
.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 170, 76, 0.25);
    outline: 0;
}

/* Active state */
.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #ffaa4c;
    border-color: #ffaa4c;
}

/* Disabled state */
.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
