/* styles.css */
form {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

table {
    margin: 0 auto; /* Center the table */
    border-collapse: collapse; /* Collapse borders */
}

/* Style the table cells */
td, th {
    border: 1px solid black; /* Single border */
    padding: 8px; /* Padding for content */
    text-align: center; /* Center-align content */
}

/* Bold the first line of the table */
th:first-child {
    font-weight: bold; /* Bold font weight */
}
