/**
 * Game Schedule Styles
 */
.game-schedule {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Glass effect */
.game-schedule .glass {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.game-schedule .games-table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* League badges */
.game-schedule .league-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive table */
@media (max-width: 768px) {
    .game-schedule .games-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Widget specific styles */
.game-schedule-widget .game-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.game-schedule .text-primary-foreground.active{
    border: 1px solid #000;
}

.game-schedule .league-filter:focus{
    outline-width: 0px!important;
}

.game-schedule .flex {
    justify-content: center;
}

.game-schedule table button{
	border: 1px solid  #000;
	font-weight: bold;
	color: #000;
}

.game-schedule .font-medium {
    font-weight: 600;
	color: #000;
}

