/* CSS for the entire page */
/*styles.css*/
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}
 
header {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
 
header h1 {
    font-size: 24px;
    margin: 0;
}
 
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
 
.container {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
 
input-container {
    text-align: center;
}
 
textarea {
    width: 100%;
    height: 100px;
    resize: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}
 
button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}
 
button:hover {
    background-color: #0056b3;
}
 
.hidden {
    display: none;
}
 
footer {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}
 
/* CSS for tables */
 
table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ddd;
}
 
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
 
th {
    background-color: #f2f2f2;
}
 
/* Style for tables within the output */
table table {
    border: 1px solid #ddd;
    width: 100%;
    margin-bottom: 10px;
}
 
/* Style for table headers within nested tables */
table table th {
    background-color: #f2f2f2;
}
