/* Layout & Page Styling */
body { 
    font-family: sans-serif; 
    margin: 100px; 
    margin-bottom: 150px; 
    color: #333;
} 

/* Typography */
h1 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

h2 {
    margin-top: 50px;
    color: #555;
}

/* Base Table Layout */
table { 
    border-collapse: collapse; 
    margin-bottom: 50px; 
    text-align: center;
} 

table, th, td { 
    border: 2px solid #ccc; 
    padding: 8px; 
} 

th {
    background-color: #E8FCC6;
}

/* Profile Picture Styling */
table img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Tic-Tac-Toe Layout */
.tic-tac-toe td { 
    width: 30px; 
    height: 30px; 
    font-weight: bold;
    font-size: 18px;
} 

/* Form Alignment & Layout */
form {
    max-width: 400px;
}

form div {
    margin-bottom: 15px; 
}

label {
    display: inline-block;
    font-weight: 500;
}

/* Input Fields & Selection Elements */
input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 6px;
    margin-top: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Inline Selection Layout for Radios/Checkboxes */
input[type="radio"],
input[type="checkbox"] {
    margin-right: 5px;
}
