﻿.pagination {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.pagination button {
    background-color: #FA6600;
    color: white;
    font-family: "Libre Franklin", sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    margin: 0 4px;
    border: none;
    cursor: pointer;
    width: 82px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.pagination button:hover {
    background-color: #E55A00;
}

.pagination button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pagination button:hover:before {
    opacity: 1;
}

.pagination button:disabled {
    background-color: #FA6600; 
    opacity: 0.5; 
    cursor: not-allowed; 
    color: white; 
    pointer-events: none;
}

.pagination #pageInfo {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 12px;
    padding: 8px 16px;
}
.video__container {
    padding-top: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    background-color: #000; /* Optional: placeholder background color */
}


/* Keyframe animation for the spin */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Spinner styles */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10; 
    transition: transform 0.3s ease; 
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.2); 
}

.filter-menu {
    display: none;
    margin: 10px 0; 
    padding-bottom:4px;
    font-family: 'Libre Franklin', sans-serif;
}

.filter-menu label {
    font-size: 12px; 
    color: #808080; 
    font-family: 'Libre Franklin', sans-serif;
}

.filter-menu select {
    font-size: 12px; 
    color: #fff; 
    background-color: #333; 
    border: 1px solid #555; 
    padding: 5px;
    font-family: 'Libre Franklin', sans-serif;
    appearance: none; 
    outline: none; 
    cursor: pointer;
}

 .filter-menu select option {
     background-color: #333; 
     color: #fff; 
 }

 .filter-menu select option:hover {
     background-color: #555; 
     color: #fff; 
 }

 .filter-menu select:hover {
     background-color: #555; 
 }

.filter-menu select:focus {
    border-color: #fa6600; 
}


