.calculadora-indemnizacion-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

.calculadora-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    position: relative;
    transition: color 0.3s;
}

.tab-btn.active {
    color: #0073aa;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #0073aa;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.calculadora-indemnizacion-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.form-section {
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.helper-text {
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-top: 3px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
}

.btn-calcular {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-calcular:hover {
    background-color: #005177;
}

.resultado-indemnizacion {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.resultado-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 15px;
}

.resultado-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.resultado-total {
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.1em;
    color: #0073aa;
    background-color: #e6f7ff;
}

.info-adicional {
    margin-top: 15px;
    padding: 10px;
    background-color: #fffde7;
    border-left: 4px solid #ffc107;
    font-size: 0.9em;
}

.desglose-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.desglose-container h5 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.info-legal {
    padding: 10px;
}

.info-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.info-card h5 {
    margin-top: 0;
    color: #0073aa;
    margin-bottom: 10px;
}

.info-card p {
    margin-top: 0;
}

.info-legal h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}

@media (max-width: 768px) {
    .resultado-item {
        flex-direction: column;
    }
    
    .resultado-valor {
        font-weight: 600;
        margin-top: 5px;
    }
}