body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: auto;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 10px #aaa;
    background-color: #fff;
}

h2 {
    color: #007b5e; 
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.column {
    width: 23%;
    margin-bottom: 10px;
}

label {
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 5px;
    margin: 5px 0;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #007b5e; 
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background: #005f46; 
}

.result-section {
    margin-top: 20px;
    border-top: 2px solid #ccc;
    padding-top: 10px;
    display: flex;
    justify-content: center;
}

.result-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

.result-labels, .result-values {
    width: 50%;
}

.result-labels p {
    text-align: left;
    font-weight: bold;
}

.result-values p {
    text-align: right;
    font-weight: bold;
}
