* {
    box-sizing: border-box;
}

body {
    font-family: Arial;
    max-width: 70%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 22px;
}

h1 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

h2 {
    color: #2c3e50;
    margin-top: 30px;
}

h3 {
    color: #000;
}

form {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

label {
    
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 26px;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 22px;
}

input:focus,
select:focus {
    
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

button {
    background-color: #23743c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 22px;
    cursor: pointer;

}

button:hover {
    background-color:#92ae9b;
}

#result {
    margin-top: 20px;
}

#result ul {
    background: white;
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#result li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

#result li:last-child {
    border-bottom: none;
}

.error {
    background: #fee;
    color: #c0392b;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #e74c3c;
}

.table-container {
    max-height: 500px;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th {
    background-color: #23743c;
    color: white;
    padding: 12px;
    text-align: left;
    position: sticky;
    top: 0;
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background-color: #f8f9fa;
}

tr:last-child td {
    border-bottom: none;
}

.form_column {
    width: 25%;
    margin-inline: 3.5%;
    display: inline-block;
}
.form_column_summary {
    width: 20%;
    margin-inline: 2%;
    display: inline-block;
}
.logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.page_title{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 60px;
    border-bottom: 2px solid #23743c;
}
.disclaimer{
    width: 100%;
    font-size: 22px;
    color: #000;
    margin-top: 40px;
    text-align: center;
}
.footer{
    width: 100%;
    font-size: 18px;
    color: #555;
    margin-top: 20px;
    text-align: center;
}
.back_to_site{
    display: block;
    text-align: right;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #23743c;
    text-decoration: none;
}
.display_amount{
    font-weight: bold;
    color: #000;
    border-radius: 10px;
    padding: 8px;
    background-color: #edec89;
}
