/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #D2DCD4; /* Platinum */
    color: #092703; /* Dark green */
}

h1 {
    text-align: center;
    color: #4E6548; /* Hunter green */
}

form {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid #4E6548; /* Hunter green */
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #FFFFFF; /* White */
    color: #092703; /* Dark green */
}

button {
    background-color: #E9CDAD; /* Dune */
    color: #092703; /* Dark green */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

button:hover {
    background-color: #4E6548; /* Hunter green */
    color: #FFFFFF; /* White */
}

.error-messages {
    color: #E9CDAD; /* Dune */
    margin-bottom: 20px;
    font-weight: bold;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    width: 100%;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.styled-table thead tr {
    background-color: #4E6548; /* Hunter green */
    color: #FFFFFF; /* White */
    text-align: left;
    font-weight: bold;
}

.styled-table th, .styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #E9CDAD; /* Dune */
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #FFFFFF; /* White */
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #4E6548; /* Hunter green */
}

.highlighted {
    background-color: #FFFF99 !important; /* Custom highlighted row */
}
