/* index.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    display: flex;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 70%;
    max-width: 800px;
    margin: auto;
}

.container.wider {
    max-width: fit-content;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    resize: none;
}

button {
    background-color: #008CBA; /* Blue */
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 0.5rem 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem auto 0.75rem;
}

th, td {
    padding: 0.5rem;
    border: 1px solid #ccc;
    text-align: left;
    overflow-x: auto;
    max-width: 200px;
    text-wrap: nowrap;
}

th {
    background-color: #f0f0f0;
}
