body {
    font-family: Arial, sans-serif;
    width: 100%; /* Change to percentage so it scales with the viewport */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: blue;
    background-color: lightblue;
    border: 2px solid black;
    border-radius: 20px;
    box-sizing: border-box; /* Ensure padding and borders are included in width/height calculations */
}
h1 {
    text-align: center;
}
.division {
    margin-bottom: 20px;
}
select {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
}
#picks, #schedule {
    margin-top: 20px;
    font-weight: bold;
}
#login-container {
    width: 100%; /* Take full width on smaller screens */
    max-width: 600px; /* Limit the max width on larger screens */
    padding: 20px;
    margin: 0 auto; /* Center the container */
    border-radius: 10px;
    border: 2px solid black;
}

h2 {
    text-align: center;
}

p {
    text-align: center;
}

#login-container p {
    text-align: center;
    margin-top: 40px;
}

#google-signin-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #4285F4;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
    margin: 30px auto 0 !important;  /* Ensures it's centered */
}


#google-signin-button img {
    margin-right: 10px;
}

#google-signin-button:hover {
    background-color: #357ae8;
}
