
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: whitesmoke;
}

.nav-item .nav-link {
    /*font-size: 1.25rem; !* Larger font size *!*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Custom font */
    /*padding: 10px 15px; !* Increased padding *!*/
    color: #0056b3; /* Custom text color */
    /*text-shadow: 1px 1px 2px #000000; !* Text shadow for depth *!*/
    /*margin: 10px 0px 10px 10px;*/
    margin-bottom: 10px;
}

.nav-item .nav-link:hover {
    background-color: #e7e7e7; /* Background color on hover */
    color: #333; /* Text color on hover */
}

.tab-container {
    display: flex;
    justify-content: center;
}

.tab {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-bottom: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 200px;
    background: var(--table-text-color-white);
}

.site-footer {
    margin-top: auto;
    width: 100%;
    /* Add your footer styling here */
}

.form-control {
    font-size: 13px;
    border: 1px solid #f4f4f4;
    height: calc(2.3rem + 2px);
}

.form-group {
    margin-bottom: 20px;
}

.intake-form-widget {
    background-color: var(--table-text-color-white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    box-shadow: 2px 3px 5px #999;
}

.form-widget {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 2px 3px 5px #999;
}

.main-res-page {
    /*height: 65vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.form-step {
    display: none;
}

.active-step {
    display: block;
}

.td-Call {
    background: yellow !important;
    color: black !important;
    border: 1px solid black !important;
}

.zero-padding {
    padding: 0rem !important;
}

.td {
    text-align: center;
    vertical-align: middle;
}

.entries-tr td {
    outline: thin solid;
}

.entries-table th,
.entries-table td{
    text-wrap: nowrap;
}

.scrollable-horizontal {
    overflow-x: auto; /* Enables horizontal scrolling if the content overflows */
    white-space: nowrap; /* Prevents content from wrapping to a new line */
    width: 100%; /* Set to the desired width or to 100% to fill the container */
}

/* Example styling for child elements to demonstrate the scroll */
.scrollable-horizontal div {
    display: inline-block;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensures the overlay is above other content */
}

.loading-container {
    /* Adjust this as necessary to position your loading GIF */
}

#main-content.blur {
    filter: blur(5px);
    pointer-events: none; /* Makes background non-clickable */
}

.center-content span {
    display: inline-block;
    vertical-align: middle;
}

.entries-btn {
    /*border-radius: 50%;*/
    background: transparent;
    border: 0px;
}

.entries-btn:hover img {
    /*filter: hue-rotate(220deg) saturate(2.5) brightness(0.9);*/
    filter: grayscale(100%);
}

.tooltip {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 5px;
    z-index: 1000;
    left: 100%; /* Adjust as needed */
    top: 0; /* Adjust as needed */
    white-space: nowrap;
}

.select2-results__option {
    font-size: 13px; /* Dropdown options text size */
}

.select2-selection__rendered {
    font-size: 13px; /* Input and selected items text size */
}

.select2-selection__choice {
    font-size: 13px; /* Selected choices text size */
}

.select2-search--dropdown .select2-search__field {
    font-size: 13px; /* Dropdown search field text size */
}

.stats-table th {
    border-right: 1px solid #d3d3d3;
}

.width-100 {
    width: 100%;
}

.width-99 {
    width: 99%;
}

.user-icon {
    width: 32px; /* Adjust size as needed */
    height: 32px;
    border-radius: 50%;
    object-fit: cover; /* To ensure the image does not get distorted */
}

.letter-size {
    width: 8.5in; /* Width of US Letter paper */
    padding-top: 11in; /* Height of US Letter paper in proportion to width */
    margin: 0 auto; /* Center horizontally */
    border: 1px solid #ddd; /* Optional border for visualization */
    background-color: #f2f2f2; /* Optional background color */
}

.zero-margin {
    margin: 0; /* Remove default body margins */
}

.error {
    font-size: 13px;
    color: var(--table-cell-color-red);
    border-color: var(--table-cell-color-red);
}

.table-width-100 {
    width: 100%; /* Set the width of the table to fill the container */
    border-collapse: collapse;
}

.table-width-95 {
    width: 95%; /* Set the width of the table to fill the container */
    border-collapse: collapse;
}

.transfers-table th, .leaderboard-table th, .pad-table th,
.transfers-table tr, .leaderboard-table tr, .pad-table tr,
.transfers-table td, .leaderboard-table td, .pad-table td {
    border: 1px solid black; /* Add borders for better visibility */
    padding: 8px; /* Padding for content inside cells */
    text-align: center;
    vertical-align: middle;
    text-wrap: nowrap;
}

select.form-control {
    -webkit-appearance: menulist;
}

.notification-banner {
    position: fixed;
    right: -300px; /* Start off-screen */
    top: 20px;
    width: 300px;
    background-color: var(--selected-item-color);
    color: var(--table-text-color-white);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: right 0.5s ease;
    border-radius: 10px;
    font-size: .9625rem;
}

.close-btn:hover {
    background-color: darkred;
}

.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    border: none;
    background-color: transparent;
    color: var(--table-text-color-white);
    cursor: pointer;
    font-size: 16px;
}

.notification-banner p {
    margin: 0;
    padding: 0;
}

.hidden {
    right: -300px; /* Hide off-screen */
}

.visible {
    right: 20px; /* Slide in */
}

.ins-check-SUCCESS,
.ins-check-GREEN,
.text-success {
    color: var(--table-text-color-green);
}

.ins-check-FAIL,
.ins-check-RED,
.text-fail {
    color: var(--table-cell-color-red);
}

.bold-text {
    font-weight: bold;
}

.red-text {
    color: bold;
}

.align-button-right {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.form-select {
    cursor: pointer;
    padding: .5rem 1.1rem;
    border: 1px solid #f4f4f4;
    width: 100%;
    font-weight: 400;
    border-radius: 5px;
    font-size: 13px;
}

.white-text {
    color: var(--table-text-color-white) !important;
}

.sub-tab {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-bottom: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 200px;
    background: var(--sub-tabs-color);
}
