:root{
    --backcolor: #e5f8e8;
    --hospital-green: #ACD9B2;
    --very-light-pink: gray;
    --text-input-field: #F7F7F7;
    --dark-green: rgb(20, 99, 41);
    --lg: 18px;
    --sm: 14px;
    --md: 16px; 
}
body{
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    background: white;
}
.module-body{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.inner-box{
    display: grid;
    grid-template-columns: 28% 15% 23% 15%;
    grid-template-rows: auto auto auto auto;
    grid-column-start: 2;
    width: auto;
    background: var(--backcolor);
    gap: 10px;
    border: 1px solid var(--dark-green);
    align-items: center;
    justify-content: center;
    padding: 30px 0 20px 0;
    border-radius: 20px;
    box-shadow: 2px 3px 8px var(--dark-green);
}
#blank{
    grid-area: 1/3/1/5;
}

.logo{
    width: 25px;
}

input{
    height: 16px;
    margin: 5px;
    text-align: end;
}
.installment-result{
    grid-area: 5/1/5/5;
    justify-self: center;
    align-items: center;
    margin: 25px 0 15px 0;
    font-weight: bold;
    display: grid;
    grid-template-columns: 55% 35%;
}
table{
    margin-top: 40px;
    margin-bottom: 100px;
    background: var(--backcolor);
    text-align: right;
}
tr:nth-child(1), tr:nth-last-child(1){
    font-weight: bold;
    background: var(--hospital-green);
    color: black;
}
td{
    width: 125px;
}
td:nth-child(1){text-align: left;}
tr:nth-child(1){text-align: center; }
tr:nth-child(even){
    background: white;
}
#table-button{
    width: 150px;
    height: 42px;
    margin-top: 20px;
    border-radius: 12px;
    cursor: pointer;
    background: var(--dark-green);
    text-align: center;
    border: 2px solid var(--hospital-green);
    color: white;
    font-weight: bold;
    transition: 500ms;
}
#table-button:hover{
    /* transform: translateY(1.5px); */
    transform: scale(1.1) ;
    transition: transform 500ms ease-out;
}
svg {
    background: white;
    border: 1px solid #ccc;
}
text {
    font-family: sans-serif;
    font-size: 10px;
}