.simulador-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-top: 20px;
    overflow: visible !important;
}

.form-group-simulador {
    margin-bottom: 20px;
}

.form-group-simulador label {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-group-simulador input,
.form-group-simulador select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    color: #666;
    background: #fff;
}

.form-group-simulador input:focus,
.form-group-simulador select:focus {
    border-color: #0046c7;
    outline: none;
}

.btn-simular {
    background-color: #0046c7;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    float: right;
    margin-top: 10px;
}

.btn-simular:hover {
    background-color: #0453e6;
}

.btn-limpiar {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
    margin-top: 10px;
}

.btn-limpiar:hover {
    background-color: #5a6268;
}

.tabla-cronograma {
    width: 100%;
    margin-top: 30px;
    clear: both;
    display: none;
}

.tabla-cronograma table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.tabla-cronograma thead {
    background-color: #0046c7;
    color: white;
}

.tabla-cronograma th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #003bb3;
}

.tabla-cronograma td {
    padding: 10px 8px;
    text-align: center;
    color: #333;
    font-size: 12px;
    border: 1px solid #e0e0e0;
}

.tabla-cronograma tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.tabla-cronograma tbody tr:hover {
    background-color: #e8f4f8;
}

.tabla-cronograma .total-row {
    background-color: #FFC000 !important;
    font-weight: bold;
}

.resumen-cuota {
    background: linear-gradient(135deg, #0046c7 0%, #0453e6 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

.resumen-cuota h3 {
    margin: 0;
    font-size: 18px;
}

.resumen-cuota .monto-cuota {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.resumen-cuota .detalle {
    font-size: 14px;
    opacity: 0.9;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.input-group-text {
    background-color: #e9ecef;
    border: 1px solid #ccc;
    border-left: none;
    padding: 12px 15px;
    font-size: 15px;
    color: #666;
    border-radius: 0 4px 4px 0;
}

.input-group {
    display: flex;
}

.input-group input {
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.info-tea {
    background: #e8f4f8;
    border-left: 4px solid #0046c7;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    display: none;
}

.info-tea strong {
    color: #0046c7;
}

@media (max-width: 768px) {
    .simulador-container {
        padding: 20px 15px;
    }

    .btn-simular, .btn-limpiar {
        float: none;
        width: 100%;
        margin: 5px 0;
    }

    .tabla-cronograma {
        overflow-x: auto;
    }

    .tabla-cronograma table {
        min-width: 900px;
    }
}