html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

import '@videojs/themes/dist/sea/index.css';
/*span.blue {
    background-color: #77abe6;
}*/
* {
    font-family: 'Roboto','Noto Sans', sans-serif;
}

@media (min-width: 768px) {
    html {
        /*font-size: 1vw;*/
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin-bottom: 60px;
}

.page-background-class {
    background-image: url(/images/Version8.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/*.material-icons {
    display: inline-flex;*/ /*Stackoverflow*/
/*vertical-align: sub;*/ /*Stackoverflow*/
/*}*/

.material-symbols-rounded {
    /*font-size: 1vw;*/ /*Preferred icon size */
    display: inline-flex; /*Stackoverflow*/
    vertical-align: middle; /*Stackoverflow*/
}

.inline-symbol-sm {
    font-size: 18px !important; /*Preferred icon size */
    display: inline-flex; /*Stackoverflow*/
    vertical-align: bottom; /*Stackoverflow*/
}

/*This is modifying the btn-primary colors but you could create your own .btn-something class as well*/
.btn-primary {
    color: white;
    background-color: #0495c9;
    border-color: #357ebd; /*set the color you want here*/
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        color: white;
        background-color: #77abe6;
        border-color: #285e8e; /*set the color you want here*/
    }

.nav-link {
    text-align: center;
}

    .nav-link:hover, .nav-link:focus, .nav-link:active {
        border-radius: 5px;
        color: white !important;
        background-color: #0495c9;
        text-align: center;
    }

.round-border {
    border-radius: 6px;
    overflow: hidden;
}

.page-container {
    width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* Remove padding on smaller screens */
@media (max-width: 768px) {
    .page-container {
        padding-left: 0;
        padding-right: 0;
    }
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dynamic columns */
    gap: 12px; /* Space between thumbnails */
    justify-content: center;
    padding: 10px;
}

.thumbnail-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
}

.thumbnail-img-container {
    width: 100%;
    aspect-ratio: 16 / 9; /* Ensures uniform size */
    overflow: hidden;
    border-radius: 8px;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.responsive-preview {
    width: 100%;
    max-height: 300px;
    max-width: 300px;
    height: 100%;
    object-fit: cover;
}

.responsive-pfp {
    width: 100%;
    max-height: 40px;
    max-width: 40px;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
}

.blue-dot::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #3B71CA;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    overflow: hidden; /* Ensures the rounded corners are applied */
    border-radius: 12px; /* More rounded corners */
}

.video-js {
    border-radius: 12px; /* Apply rounded corners to the video player */
    overflow: hidden
}

/*@media (max-width: 1200px) {
    .video-container {
        margin-inline: 3%;
    }
}*/
/*@media (max-width: 768px) {
    .video-container {
        margin-inline: 2%;
    }
}*/
video {
    width: 100%;
}

.required-field:after {
    content: "*";
    color: red;
}
