/* INPUT TYPES */

/* HEADER SETTINGS */
.container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    max-width: 100%;
    height: auto;
}

/* BODY SETTINGS */
body {
        font-family:'Times';
        font-size:25px;
		color:black;
        background-color:#808080;
		text-align: center;
    }
h1 {
      text-align: center;
    }
h10 {
        font-family:'Times';
        font-size:15px;
    }

/* Style for the image selection */
.image-option {
        display: inline-block;
        margin-right: 10px;
        cursor: pointer;
    }

.image-option input[type="radio"] {
        display: none; /* Hide the default radio button */
    }

.image-container {
        border: 2px solid transparent;
        border-radius: 10px; /* Rounded corners */
        padding: 10px; /* Add padding for space between image and border */
        transition: border-color 0.3s ease;
    }

.image-option input[type="radio"]:checked + .image-container {
        border-color: black; /* Highlight border color when selected */
    }

.image-option img {
        max-width: 100%; /* Ensure images don't exceed their container */
    }

/* Style for button */
button {
        border: 1px solid #ccc; /* Add border */
        border-radius: 10px; /* Make corners round */
        padding: 10px; /* Add some padding for better appearance */
        width: 400px; /* Set width */
    }

/* Style for input box */
input {
        border: 1px solid #ccc; /* Add border */
        border-radius: 10px; /* Make corners round */
        padding: 10px; /* Add some padding for better appearance */
        width: 400px; /* Set width */
    }

/* Style for select box */
select {
        border: 1px solid #ccc; /* Add border */
        border-radius: 10px; /* Make corners round */
        padding: 10px; /* Add some padding for better appearance */
        width: 200px; /* Set width */
    }


/* Style for disclaimer page */
.disclaimer {
      margin-bottom: 20px;
    }
.disclaimer ol {
      list-style-type: decimal;
      padding-left: 20px;
	  text-align:left;
    }
.disclaimer ol li {
      margin-bottom: 10px;
    }