/* ===== SALARY CALCULATOR BASE ===== */
.uct-salary-calculator {
    font-family: inherit;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    box-sizing: border-box;
}

.uct-salary-calculator * {
    box-sizing: border-box;
}

.uct-salary-calculator .uct-field-group {
    margin-bottom: 15px;
}

.uct-salary-calculator label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.uct-salary-calculator input[type="number"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
}

.uct-salary-calculator input:focus {
    outline: none;
    border-color: #2563eb;
}

.uct-salary-calculator .uct-calc-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: #2563eb;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.uct-salary-calculator .uct-calc-btn:hover {
    background: #1e40af;
}

.uct-salary-calculator .uct-result {
    margin-top: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

/* Mobile */
@media (max-width: 480px) {
    .uct-salary-calculator {
        padding: 16px;
    }
}
