.cotizacion-formulario {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.cotizacion-formulario label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
}

.cotizacion-vacia {
    background: #fff;
    border: 1px dashed #ced4da;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    color: #6c757d;
}

.cotizacion-vacia p {
    margin: 0;
    font-size: 15px;
}

.cotizacion-lista-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cotizacion-tabla thead th {
    background: #343a40;
    color: #fff;
    border-color: #343a40;
    font-size: 14px;
    white-space: nowrap;
}

.cotizacion-tabla tbody td,
.cotizacion-tabla tfoot td {
    vertical-align: middle;
    font-size: 14px;
}

.cotizacion-tabla .cotizacion-total-row {
    background: #f1f8f4;
}

.cotizacion-tabla .cotizacion-total-row td {
    border-top: 2px solid #28a745;
}

.cotizacion-tabla #cotizacion-total {
    color: #28a745;
    font-size: 16px;
}

.btn-quitar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-quitar:hover {
    background: #c82333;
}

.cotizacion-notas {
    display: none;
    background: #fff8f6;
    border-left: 4px solid tomato;
    border-radius: 4px;
    padding: 16px 18px;
    margin-top: 20px;
    text-align: left;
}

.cotizacion-notas p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.cotizacion-notas p:last-child {
    margin-bottom: 0;
}

a.btn.calculadora-btn-agregar,
a.btn.calculadora-btn-agregar:hover,
a.btn.calculadora-btn-agregar:focus,
a.btn.calculadora-btn-agregar:active,
a.btn.calculadora-btn-agregar:visited {
    background-color: tomato !important;
    color: #fff !important;
    width: 100%;
}

.calculadora-btn-descargar {
    background-color: tomato;
    color: aliceblue;
}

@media (max-width: 767.98px) {
    .cotizacion-formulario .form-group:last-child {
        margin-bottom: 0;
    }

    .cotizacion-tabla {
        font-size: 13px;
    }
}