body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('./assets/background.jpg'); /* Add your background image here */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.calculator {
    background-color: rgba(0, 0, 0, 0.8); /* Slightly transparent for readability */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #61dafb;
}

label {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: #61dafb;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #61dafb;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #333333;
    color: white;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #61dafb;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #21a1f1;
}

#result {
    margin-top: 20px;
    font-size: 18px;
    color: #61dafb;
}
