/* master.css updated content */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e9eff1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Space for buttons below the container if necessary */
}

h1 {
    text-align: center;
    color: #007bff;
    margin-bottom: 15px;
}

.input, .button {
    width: 90%; /* Match input width to button width */
    max-width: 400px; /* Ensure inputs and buttons have the same max-width */
    padding: 14px 20px; /* Consistent padding for inputs and buttons */
    margin: 8px 0; /* Consistent margin for a uniform layout */
    border: 1px solid #ccc; /* Border for inputs */
    border-radius: 4px; /* Rounded corners for both inputs and buttons */
    box-sizing: border-box; /* Ensure padding is included in total width and height */
}

.button {
    background-color: #007bff;
    color: white;
    border: none; /* Buttons do not need a border */
    cursor: pointer; /* Cursor indicates clickable button */
}

.button:hover {
    background-color: #0056b3; /* Darker shade on hover for buttons */
}

.scrollable-text {
    overflow-y: auto;
    height: calc(100vh - 160px); /* Adjust the height based on your content's needs */
    text-align: justify;
}
