h1{
    text-align: center;
    font-size: 2.5em;
    margin: 10px
}

h2{
    text-align: center;
    font-size: 2.5em;
    margin: 10px
}

nav {
    text-align: center;
    margin: 10px
}

body {
    background-color: #ffffff; 
    color: #000000; 
    font-family: Arial, sans-serif; 
    margin: 10px; 
}

footer {
    text-align: center;
    padding: 10px;
    margin: 10px;
}

.center-div {
    text-align: center;
    margin: 10px;
}

.chat-container {
    text-align: center;
}

.contact-text {
    font-size: 18px; 
    font-weight: bold;
}

.contact-link {
    font-size: 14px; 
    color: blue;
    text-decoration: underline;
}



body {
    text-align: left;
}


.submit-photo-header {
    text-align: left;
    font-size: 20px; 
    font-weight: bold; 
    margin-bottom: 10px; 
}

.content-box {
    width: 70%; 
    max-width: 1000px; 
    margin: 50px auto; 
    padding: 20px;
    background-color: #d1d0d0; 
    border-radius: 10px; 
}

.styled-table th, .styled-table td {
    padding: 10px;
    text-align: center;
    border: 2px solid black; 
}


.styled-table th {
    background-color: rgb(51, 139, 255);
    color: white;
    padding: 10px;
    font-size: 1.2em;
}


.styled-table img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 5px;
    border: 2px solid black; 
}


.styled-table input[type="radio"] {
    transform: scale(1.3); 
    margin-right: 5px;
}


.styled-table td label {
    display: block;
    padding: 5px;
    border: 2px solid black; 
    border-radius: 5px;
    background: #f8f8f8;
    cursor: pointer;
}


.form-buttons {
    margin-top: 20px;
}

input[type="submit"],
input[type="reset"] {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    margin: 5px;
}

input[type="submit"] {
    background-color: #00ff3c;
    color: white;
    border: 2px solid black;
    border-radius: 5px;
}

input[type="reset"] {
    background-color: #ff0019;
    color: white;
    border: 2px solid black;
    border-radius: 5px;
}

.photo-selection-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

.styled-table {
    margin: 20px auto;  /* Centers the table horizontally */
    padding: 15px;
    border: 3px solid black;
    text-align: center;
    width: 80%;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;  /* Ensures all content inside is centered */
}