.season-teams {
    display: none;
}

.season {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    background-color: var(--wp--preset--color--custom-color-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;

    .season-header {
        position: fixed;
        max-width: 1280px;
		width: 100%;
        background-color: var(--wp--preset--color--custom-color-4);

        display: flex;
        flex-direction: row;
        transition: all 0.1s ease;
        z-index: 99;
        border-bottom: 1px solid var(--wp--preset--color--custom-color-2);
    }

    .display-buttons {
        flex: 0 0 auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: auto;
        margin-left: 10px;
    }



    .gameplan-button,
    .table-button,
    .team-select {
        font-family: inherit;
        font-size: 16px;
        font-weight: 600;
        border: 1px solid var(--wp--preset--color--custom-color-1);
        border-radius: 3px;
        background-color: var(--wp--preset--color--custom-color-4);
        color: var(--wp--preset--color--custom-color-1);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        padding: 10px 10px;
        margin: 20px 5px;
    }

    @media (max-width: 768px) {
        .gameplan-button,
        .table-button,
        .team-select {
            font-size: 14px;
        }
    }

    .team-select {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        justify-content: flex-end;
        margin-right: 10px;
    }


    .gameplan-button:hover,
    .table-button:hover {
        background-color: #534b00;
    }

    .gameplan-button.active,
    .table-button.active {
        background-color: var(--wp--preset--color--custom-color-1);
        color: var(--wp--preset--color--custom-color-4);
    }

    option {
        font-family: Arial, sans-serif;
        text-align: center;
    }

	.placeholder {
		position: relative;
		width: 100%;
		height: 82px;
	}

    .season-content {
        width: 100%;
    }
	
}
