body {
    font-family: Arial;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}
#table_div, #form_div {
    padding: 20px;
    box-sizing: border-box;
}

.container {
    display: flex;
    justify-content: space-around; 
    align-items: flex-start;
    gap: 20px;
    margin: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
table {
    border-collapse: collapse;
    width: 100%;
    /* max-width: 400px; */
}

th, td {
    border: 1px solid #ccc;    
    padding: 10px;
    text-align: start;
    /* width:100%; */
    box-sizing: border-box;
}
h2 {
    text-align: center;
    color: #a46085;
}

input[id="name_field"],
input[id="age_field"],
input[id="phone_field"],
select[id="state_field"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #f6a2e9;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #fd6bb9;
}

