/* css/calculator.css */
.value-calculator {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-calculator h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.value-calculator .description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.calculator-form {
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tooltip {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: #eee;
    border-radius: 50%;
    margin-left: 0.5rem;
    cursor: help;
    position: relative;
}

.tooltip:hover::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    width: max-content;
    max-width: 200px;
    margin-left: 0.5rem;
    z-index: 1;
}

.results {
    padding: 1rem;
    margin-top: 2rem;
}

.current-results {
    background: #fee2e2;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.potential-results {
    background: #dcfce7;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 1rem;
}