body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f7f7f7;
}

.header {
    padding: 20px;
    background-color: #eceaea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    padding: 0px 10px 10px 10px;
}

.ip-wrapper {
    display: flex;
    gap:10px;
}
.ip-wrapper #js-manual-ip {
    font-weight: 800;
}

.content {
    margin: 40px auto 20px auto;
    max-width: 550px;
}

.g-recaptcha {
    margin-top: 10px;
    margin-bottom: 5px;
}

.content h3, p {
    font-family: monospace;
}

.header img {
    display: flex;
    max-height: 65px;
}

.form-container {
    max-width: 550px;
    margin: auto;
    border-radius: 5px;
}

#js-submission-form {
    font-family: monospace;
    display: flex;
    flex-direction: column;
    margin: auto;
}

label {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #333;
}

input[type="email"],
input[type="text"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit {
    max-width: 100px;
    padding: 10px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit:hover {
    background-color: #0056b3;
}

#js-ip-status-message {
    margin-top: 5px;
    margin-bottom: 5px;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less */
    max-width: 500px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

input, textarea, select {
    font-size: 16px;
}

::placeholder {
    font-size: 13px;
}