/* calculate.css */

.container {
    padding-top: 2rem;
}

.calculator-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #3b82f6;
}

.calculator-card h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    text-align: center;
    font-size: 1.75rem;
}

.calc-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.option-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.option-group input[type="number"],
.option-group select {
    padding: 0.5rem;
    border-radius: 6px;
    border: 2px solid #3b82f6;
    background-color: #0f172a;
    color: #fff;
    font-family: 'Lilita One', cursive;
}

.results-box {
    background-color: #0f172a;
    border-radius: 8px;
    padding: 1rem;
    min-height: 50px;
    text-align: center;
    font-size: 1.25rem;
    color: #e2e8f0;
    white-space: pre-wrap;
}
