body {
    font-family: Arial, sans-serif;
    background-color: #161d27;
    margin: 0;
    padding: 0;

    color: #ecebef;
    /* color: red; */
}

.container {
    max-width: 90%;
    width: fit-content;
    margin: 20px auto;
    background: #585f69;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    transition: box-shadow 1s ease;

    border-radius: 3px;

}

.tableContainer{
    max-width: 95%;

    width: fit-content;

    margin: 20px auto;
    background: #585f69;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    transition: box-shadow 1s ease;

    border-radius: 3px;

    overflow-x: auto;
}

.container:hover {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.tableContainer:hover {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

#chartDiv{
    flex-wrap: wrap;
    justify-content: center;
}

.chartContainer{
    width: 29.33%;
    margin-left: 2%;
    margin-right: 2%;

    margin-top: 1%;
    margin-bottom: 1%;

    box-sizing: border-box;

    background: #585f69;
    /* color: #ecebef; */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    transition: box-shadow 1s ease;

    border-radius: 3px;
}

.chartContainer:hover {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

h1, h2, h3 {
    text-align: center;
}

label {
    display: block;
    margin-top: 10px;
}

input {
    margin: 5px 0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.tabDiv{
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;

    background-color: #585f69;
}

.tabButton{

    font-size: 20px;

    font-weight: bold;


    padding: 10px 20px;
    margin: 0px;
    background-color: #599bf8;
    border: none;
    cursor: pointer;

    box-shadow: none;
    transition: background-color 0.5s ease;

    border-radius: 0px;

}

.tabButton:hover {
    background-color: #96c2ff;
    box-shadow: none;
}


.tabButton:disabled{
    background-color: #6459f8;
    /* color: #0d2649; */
    cursor: not-allowed;
}

.playerChoiceBox {
    width: 50px;
    height: 50px;
    margin-right: 10px; /* Reduced to minimize gap */
    /* vertical-align: middle; Align the checkbox with the input */
}

.horizontalButtonContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

button {

    all: unset;

    padding: 10px 15px;
    margin: 0.3vw;

    background-color: #599bf8;
    border: none;
    cursor: pointer;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 1s ease;
    transition: background-color 0.5s ease;

    border-radius: 2px;
}

button:hover {
    background-color: #96c2ff;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

button:disabled {
    background-color: #a04545;
    cursor: not-allowed;
}

button.selectedButton{
    background-color: #6459f8;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

#playerList ul {
    list-style-type: none;
    padding: 0;
}

#questionDetails{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}




.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    user-select: none;
    display: inline-block;
    vertical-align: top;
    border: none;
    background-color: #505b69;
}
.styled-table thead tr {
    background-color: #599bf8;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #dddddd;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border: none;
}
.styled-table tbody tr:nth-of-type(even) {
    background-color: #6a6a6a;
}
.selected {
    background-color: #6459f8 !important;
    /* color: #000 !important; */
}




#currentTime {
    width: 80px;
    height: fit-content;
    outline: none;
    border: none;
    font-size: 32px;
    font-weight: 450;
    animation: pulseColors 2s infinite;
    background-color: #585f69;
    color: #ecebef;
}

.teamDropdown {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.playerInputWrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.playerInputField {
    margin-right: 10px;
    min-width: 100px;
    max-width: 500px;
}
