[v-cloak] {display: none;}


.excel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.excel-table th, .excel-table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0.5rem;
    text-align: left;
	white-space:nowrap;
}

.excel-table th {
    background-color: #f9fafb; 
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s;
    user-select: none;
}

.excel-table th:hover {
    background-color: #f3f4f6; 
}

.excel-table th.active {
    background-color: #e5e7eb; 
}

.excel-table tbody tr:hover {
    background-color: #f9f9f9;
}

.row-highlight {
    background-color: #07421e !important;
    transition: background-color 0.5s ease-out;
}

.loading-animation {
    border-top-color: #059669; 
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ws-update-flash {
    background-color: #4e3718 !important;
    transition: background-color 0.5s ease-out;
}





    .chat-link {
        color: #93c5fd !important;
        text-decoration: underline;
    }
    #messages {
    }



.red-card-home-advantage > td {
    background-color: #0b3433 !important; /* Dark teal/green background */
}

.red-card-away-advantage > td {
    background-color: #3b0707 !important; /* Dark red background */
}















/* Custom Thin Blue Scrollbar */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #1a202c; /* thumb color | track color */
}

/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 6px;  /* Width of the vertical scrollbar */
    height: 6px; /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: #0c1017; /* Matches your .bg-gray-50 background */
}

::-webkit-scrollbar-thumb {
    background-color: #3b82f6; /* Blue-500 */
    border-radius: 10px;       /* Rounded edges */
    border: 1px solid #0c1017; /* Creates a little space around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #60a5fa; /* Blue-400 on hover */
}

/* Special handling for the main app container if it has overflow */
#app {
    scrollbar-gutter: stable; /* Prevents layout jump when scrollbar appears */
}
