body {
    font-family: Arial, sans-serif;
    background-color: #acddac;
    margin: 10px;
    padding: 20px;
    text-align: center;
    color: #214e22;
}

textarea {
    width: 80%;
    max-width: 600px;
    height: 100px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #259428;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    color: #2c5f2d;
}

textarea:focus {
    border-color: #3ae740;
    box-shadow: 0 0 8px rgba(27, 196, 109, 0.5);
    outline: none;
}

table {
    width: 80%;
    max-width: 700px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #d4edda;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

table,
th,
td {
    border: 1px solid #37883b;
}

td {
    padding: 10px;
    font-size: 16px;
}

td:first-child {
    font-weight: bold;
    background-color: #c8e6c9;
}

b#output5 {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #2c5f2d;
    background-color: #fffc3b;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #259428;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

small {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: #2c5f2d;
}