body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #1e1e2f;
    color: #f5f5f5;
}

h1 {
    color: #ffffff;
}

#page {
  visibility: hidden;
}


.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.button:hover {
    background-color: #2563eb;
    border-color: #1e40af;
}

button {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

legend {
    font-size: 0.8rem;
}

footer {
    text-align: right;
    font-size: 0.8rem;
    color: #313146;
    margin: 0;
}

select {
    text-align: center; 
    text-align-last: center;
}

option {
    text-align: center;
}

.dropdown {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 5px;
    border-radius: 5px;
}

.dropdown option {
    background-color: #333;
    color: #fff;
}

.dropdown:hover {
    border-color: #777;
}

#leaderboard tbody tr {
    cursor: pointer;
}

#trackRecords tbody tr {
    cursor: pointer;
}


.hidden {
    display: none;
}

.highlight {
    color: mediumpurple;
}

input {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #333;
    padding: 5px;
    border-radius: 4px;
}

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        border: 1px solid #333;
        -webkit-text-fill-color: #fff;
        -webkit-box-shadow: 0 0 0px 1000px #1e1e1e inset;
    }
	
#lbStats {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 20px;
    padding: 10px;
    max-width: 300px;
    text-align: center;
}

    #lbStats h3 {
        font-size: 1rem;
        color: #343a40;
        margin-bottom: 10px;
    }

    #lbStats ul {
        list-style: none;
        padding: 0;
    }

    #lbStats li {
        margin-bottom: 5px;
    }
	
	
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
	grid-template-rows: repeat(3, auto); 
    gap: 20px; 
    text-align: center; 
    justify-items: center; 
    align-items: center; 
	font-size: 0.8rem;
	color: #6c757d;
	

    gap: 10px; 
    margin: 10px; 
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.list-container {
    padding: 15px;
    width: 100%; 
    box-sizing: border-box; 
}

.list-container h3 {
	font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
}

.list-container ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    text-align: center; 
}

.list-container li {
	
    margin-bottom: 8px; 
}

.list-container a {
    text-decoration: none; 
    color:  #90c4de; 
    cursor: pointer;
}

.list-container a:hover {
    text-decoration: underline;
}

#hallOfFame li:first-child {
    font-size: 1.1em; 
    font-weight: bold;
}

.stat-number {
    font-style: italic;
    font-size: 0.9em;
    color: #90c4de;
}
