body {
    font-family: Arial, sans-serif;
    background-color: #1a8cff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.new {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.center {
    text-align: center;
    margin: auto;
    width: 50%;
    padding: 10px;
}

#login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

button {
    background-color: #0000ff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.register {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.top-right {
    position: absolute;
    /* Remove this line if you want the div to be positioned relative to its container */
    top: 0;
    /* Set top position to 0 */
    right: 0;
    /* Set right position to 0 */
}


/* Use this for the dropdown menu on the home page.*/

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.flex-container>div {
    background-color: #f1f1f1;
    margin: 10px;
    padding: 20px;
    font-size: 30px;
}

.container {
    width: 80%;
    /* Set the width of the container */
    margin: 0 auto;
    /* Center the container horizontally */
}

.past-alerts,
.upcoming-alerts {
    margin-top: 20px;
    margin-left: 50px;
}

.section {
    margin-bottom: 20px;
    /* Add space between sections */
    padding: 20px;
    /* Add padding inside sections */
    border: 1px solid #ddd;
    /* Add a border to sections */
    border-radius: 5px;
    /* Add rounded corners */
}

header {
    /* Add styles for the header, like background color, padding, etc. */
}

footer {
    /* Add styles for the footer, like background color, text alignment, etc. */
}

.white-box {
    background-color: white;
    /* Set background color to white */
    padding: 20px;
    /* Add padding inside the white box */
    border: 1px solid #ddd;
    /* Optional: Add a border */
    border-radius: 5px;
    /* Optional: Add rounded corners */
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Adjust as needed */
    grid-gap: 20px;
    /* Optional spacing between sections */
}

#calendar-wrapper {
    height: auto;
    /* Adjust height as needed */
    width: auto;
}

#insurance-provider-container {
    height: auto;
    width: auto;
}

#primary-provider {
    height: auto;
    width: auto;
}

#pill-box {
    height: auto;
    width: auto;
}