body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.calculator {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
	  
}

h1 {
    font-size: 24px;
}

label {
    font-size: 16px;
    display: block;
    margin-top: 10px;
}

select {
    font-size: 16px;
    padding: 5px;
    width: 100%;
}

#calculationInputs {
    margin-top: 10px;
}

input[type="text"],
input[type="number"] {
    font-size: 16px;
    padding: 5px;
    width: 100%;
}

/* CSS for Blue Calculate Button */
.calculate-button {
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.calculate-button:hover {
    background-color: #0056b3;
}

/* CSS for Green Reset Button */
.reset-button {
    font-size: 16px;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.reset-button:hover {
    background-color: #45a049;
}

/* CSS for Green Text with Yellow Highlight in Result */
.result {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    color: green;
    background-color: yellow;
    padding: 10px;
    border-radius: 5px;
}
