body {
    background-color: #313030;
}

a {
    color: rgb(42, 162, 199); /* Sets the default link color */
    font-weight: bold; /* Makes the link text bold */
    font-size: 16px; /* Sets font size */
    transition: color 0.3s, background-color 0.3s; /* Adds a smooth transition effect */
}


h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #e6e6e6;  
    text-transform: uppercase;  
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 32px;    
}

hr {
    text-align: center;
    margin-bottom: 20px;
    color: #0ea785;  
}


form {
    margin-bottom: 20px;
    text-align: center; 
}

form label {
    margin-right: 5px;
    color: #ffffff;  
    text-transform: uppercase;  
    font-family: Verdana, sans-serif;
    font-weight: bold;
}

form input {
    margin-right: 10px;
    padding: 5px;
}

form button {
    padding: 5px 10px;
    cursor: pointer;
}

table {
    margin: 1rem auto;
    width: 80%;
    border-collapse: collapse;
}

table th {
    border: 1px solid #201616;
    padding: 10px;
    font-family: Arial, sans-serif; /* Set the font */
    font-size: 16px;               /* Set the font size */
    color: #ffffff;                /* Foreground (text) color */
    background-color: #000000;     /* Background color */
    padding: 10px;                 /* Add some padding */
    text-transform: uppercase;
    white-space: nowrap;
}

table td {
    border: 1px solid #201616;
    padding: 10px;
    text-align: left;
    font-family: Arial, sans-serif; /* Set the font */
    font-size: 16px;               /* Set the font size */
    color: #000000;                /* Foreground (text) color */
    background-color: #ffffff;     /* Background color */
    padding: 10px;                 /* Add some padding */
    text-transform: uppercase;
    white-space: nowrap;
}

select {
    background-color: white; /* Set background to white */
    color: black; /* Set text color */
    font-size: 18px; /* Make the text larger */
    font-weight: bold; /* Make the text bold */
    border: 2px solid black; /* Add a thick border */
    border-radius: 5px; /* Slightly round the corners */
    padding: 10px; /* Add padding to make it look "chunky" */
    /* width: 100%; /* Make it block-level and take up the full width */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
    appearance: none; /* Remove default dropdown styles for consistency */
    cursor: pointer; /* Add a pointer cursor */
}

/* Optional: Style the dropdown arrow */
select::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: black;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.stats-container > div {
    flex: 1; /* Optional: Ensures equal width for both lists */
    max-width: 45%; /* Optional: Adjust width constraints */
}