.calculator {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: right;
    width: 90%;
    max-width: 750px; /* הגדרת רוחב מקסימלי לקופסה */
    box-sizing: border-box; /* כדי להבטיח שה-padding לא ישפיע על הרוחב הכולל */
}

.calculator input[type="text"], .calculator select, .calculator button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    font-size: 16px;
    box-sizing: border-box;
}

.calculator button {
    background-color: #1CB3DB;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.calculator button:hover {
    background-color: #17a2b8;
}

.calculator label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator label input {
    margin-left: 10px;
}

.calculator h3 {
    text-align: center;
    margin: 15px 0;
}
