body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg-dark);
color: var(--text-light);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.calculator-card {
background-color: var(--card-bg);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
width: 90%;
max-width: 400px;
}
h2 {
text-align: center;
color: var(--primary-blue);
margin-bottom: 1.5rem;
}
.input-group {
margin-bottom: 1.2rem;
}
label {
display: block;
margin-bottom: 0.5rem;
font-size: 0.9rem;
color: #94a3b8;
}
input {
width: 100%;
padding: 10px;
border-radius: 6px;
border: 1px solid #334155;
background-color: #0f172a;
color: white;
font-size: 1rem;
box-sizing: border-box;
}
button {
width: 100%;
padding: 12px;
background-color: var(--primary-blue);
color: white;
border: none;
border-radius: 6px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background-color: #1d4ed8;
}
.results {
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px solid #334155;
}
.result-item {
display: flex;
justify-content: space-between;
margin-bottom: 0.5rem;
}
.highlight {
color: var(--success-green);
font-weight: bold;
}
</style>