body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow: hidden; /* Prevent scrolling */
}
h1, h2 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}
#submissionForm,
#form {
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.centeredDiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
input, textarea, button {
    background-color: #1e1e1e;
    color: #ffffff;
    border: 1px solid #333;
    padding-bottom: 5px;
    margin: 5px 0;
    width: 100%;
}
button {
    cursor: pointer;
}
#messages div {
    background-color: #1e1e1e;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    width: 75%;
}
.location-container {
    display: flex;
    align-items: center;
    width: calc(80% - 30px);
    margin: 0 auto;
}
.location-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}
textarea {
    min-height: 4vh;
    max-height: 32vh;
    overflow-y: auto;
    resize: vertical;
}