.calculator{
    background: var(--light-grey-color);
    border-radius: 10px;
    color: var(--grey2-color);
    padding: 24px;
}
.calculator-section{
    flex: 1 1 calc(33.33% - 32px);
}
.clear-button{
    background: var(--white-color);
    color: var(--dark-color);
}
.clear-button:hover{
    color: var(--white-color); 
}
.calculator label{
    font-weight: 500;
    font-size: 18px;
}
.calculator option{
    padding: 16px;
}
.calculator select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 16px;
    background: var(--white-color);
    border-radius: 10px;
    color: #888888;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}


@media (max-width: 430px){
    .calculator{
        padding: 10px;
        gap: 12px;
    }
    .calculator label{
        font-size: 14px;
    }
    .calculator select,
    .calculator option{
        font-size: 12px;
        padding: 12px;
    }
    .calculator-sections{
        flex-direction: column;
        gap: 12px;
    }
    .calculator-section{
        gap: 8px;
    }
    .calculator-buttons{
        gap: 12px;
    }
}