<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.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;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    color: white;
}

.form-group{
    padding-bottom: 1rem;
}

/* Custom table styling */
.table-striped thead {
    background-color: #2f3a62;
    color: white;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #415089;
    color: white;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #2f3a62;
    color: white;
}


.card-dashboard {
    color: white;
    background-color: #202f64;
    border-radius: 15px;
    height: 30vh;
    border-radius: 15px;
    border: 0px;
    padding: 2px;
}

.card-dashboard-header {
    color: white;
    background-color: #202f64;
    border-radius: 15px 15px 0 0;
}

.card-dashboard-body {
    background-color: #202f64;
    border-radius: 0 0 15px 15px;
    overflow-y: auto;
    
}

.card-info {
    color: white;
    background-color: #202f64;
    border-radius: 15px;
    height: auto;
    border-radius: 15px;
    border: 0px;
    padding: 2px;
}

.card-info-header {
    color: white;
    background-color: #202f64;
    border-radius: 15px 15px 0 0;
}

.card-info-body {
    background-color: #202f64;
    border-radius: 0 0 15px 15px;
}

.card-container {
    display: flex;
    align-items: stretch; /* This makes all flex items (cards) have the same height */
}

.card {
    flex: 1; /* This makes the card take equal space */
    margin: 10px;
}
/* Model Popup's */
.modal-content {
    background-color: #202f64;
    border-radius: 10px;
}

.modal-content .btn-close {
    background-color: white;
}
/* Read Only Input Box Styles */
.readonly-input {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #ced4da;
    cursor: not-allowed;
}



.readonly-input:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
}

/*Sports Weekly Calendar Styles*/
.calendar {
    font-family: Arial, sans-serif;
    color: black;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f1f1f1;
    color: black;
}

.week-range {
    font-size: 18px;
    font-weight: bold;
    color: black;
}

.navigation button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: black;
}

.day {
    flex: 1 1 auto; /* Allows cards to shrink or grow equally */
    min-width: 100px; /* Set a minimum width to prevent them from becoming too small */
    margin: 0 5px; /* Space between the cards */
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fafafa;
    color: black;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.day:hover {
    background-color: lightgray; /* Darker blue when hovered */
    transform: scale(1.05); /* Slightly increase the size on hover */
}
.day-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.day-name {
    font-weight: bold;
    font-size: 16px;
}

.day-date {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
}

.game-count {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
}
.no-games {
    color: darkgray;
}
.day-no-games {
    color: darkgray;
    background-color: grey;
    cursor: not-allowed;
}
.day-no-games:hover {
    color: darkgray;
    background-color: grey;
    cursor: not-allowed;
    transform: none;
}
.has-games {
    color: black;
}
.selected-day {
    background-color: #343a40;
    color: white;
    transform: scale(1.1);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.selected-day:hover {
    background-color: #343a40;
    color: white;
    transform: scale(1.1);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.selected-day .game-count {
    color: #ffffff;
}
/*calendar-body is the date cards*/
.calendar-body {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping */
    justify-content: space-between;
    padding: 10px;
    color: black;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent wrapping of child content */
    scrollbar-width: auto; /* Hide scrollbar for Firefox */
}

.calendar-body::-webkit-scrollbar {
    display: auto; /* Hide scrollbar for Chrome, Safari, and Edge */
}

.calendar-body::-webkit-scrollbar-thumb {
    background-color: #6c757d; /* Color of the thumb (scroll handle) */
    border-radius: 10px; /* Round edges for thumb */
}

/*game-list is the table containing the events*/
.games-list {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent wrapping of child content */
    scrollbar-width: auto;
}

.games-list::-webkit-scrollbar {
    display: auto;
}

.games-list::-webkit-scrollbar-thumb {
    background-color: #6c757d;
    border-radius: 10px;
}
.event {
    margin-bottom: 10px;
    color: black;
}
.select-box {
    background-color: white
}
</pre></body></html>