*{
    
    list-style-type: none;
    margin: 0;
    padding: 0;

}

.main{
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: hidden; /*allows the mobile format to look right*/
  
    width: 100%;
    /*    background: linear-gradient(to bottom, white, #7393B3);
*/
    /*background: linear-gradient(to bottom, white, rgb(49, 94, 49));*/

    /*heres the old right color background: linear-gradient(to bottom, white, #4a4279);*/
    
 
    /*previous background: linear-gradient(to bottom, white, rgb(0, 0, 145));*/
}


/*might not need this-TD*/
.content {
    background: linear-gradient(to bottom, white, rgb(243, 219, 83));
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;

    color: royalblue;
    text-shadow: 0 0 3px #ffffff, 0 0 5px #ffffff;

    padding: 40px;
}


/*putting this here so header isnt beside the paragraph content -TD*/
.header-content {
    text-align: center;
    margin-bottom: 20px;
    list-style-type: none;
    
}
.paragraph-content {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    
}

/* From here down written by Brandon Eacho */

.AdminLinks {
    height: auto;
    width: 100%;

    background-color: #6495ED;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    list-style: none;
}

.AdminLinks h2 {
    font-size: 20px;
}

.AdminLinks li {
    margin: 0;
}

.AdminLinks a {
    color: #fff;
    text-decoration: none; 
    font-size: 1.2em;
    margin: 0 10px;
}

.AddInfo {
    height: auto;
    min-height: 45vh;
    overflow: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #6495ED;
    padding-bottom: 10px;
    padding-top: 10px;
}

.AddInfo::after {
    content: "";
    display: table;
    clear: both;
}

.AddInfo li {
    margin: 0;
    align-items: center;
    justify-content: center;
}

.AddInfo a {
    color: #fff;
    text-decoration: none; 
    font-size: 1.2em;
    margin: 0 10px;
}

/* Center the form on the screen */
.centered-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Adjust to your preference */
}

/* Style the form container */
.form-container {
    width: auto; /* Adjust to your preference */
    min-width: 300px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style the input fields and button */
label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in width */
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.menu-item {
    margin-bottom: 10px; /* Adjust margin as needed */
}

.menu-item a {
    display: block;
    padding: 10px 15px; /* Adjust padding as needed */
    background-color: white;
    color: black;
    text-decoration: none;
    border: 5px black;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Smooth transition */
    max-width: 100px;
    margin: 0 auto;
    font-size: 15px;
}

.menu-item a:hover {
    background-color: #f0f0f0;
}