    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    form {
        font-family: 'Poppins', sans-serif;
		letter-spacing: normal;
        max-width: 1250px;
        margin: 20px auto;
        /*box-shadow: 0 6px 20px rgba(0,0,0,0.1);*/
        padding: 40px 50px;
        
    }

	.setion-ventas {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background: white;
    padding: 20px;
    border-radius: 16px;
	}


.pago-card {
	height: 100px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  gap: 12px;
  transition: all 0.2s ease;
  justify-content: space-between;
}

.pago-card:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.pago-icon {
  font-size: 24px;
  color: #2c7;
  flex-shrink: 0;
}

.small-pago small {
    color: #484848;
    font-size: 13px;
}

.pago-detalle div {
  font-size: 14px;
  line-height: normal;
  color: #111;
}

.pago-detalle strong {
  font-size: 16px;
  color: #333;
}

.btn-eliminar-pago {
  background: #ffebeb;
  color: #e02424;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  padding: 6px 10px;
  flex-shrink: 0;
  transition: 0.2s;
}

.btn-eliminar-pago:hover {
  background: #ffe0e0;
}


.met-info-venta {
	width: 80px;
    display: grid;
}

i.fas.fa-credit-card {
    border-radius: 6px;
    padding: 10px;
    background: #eeeeeec2;
    color: #4b5563;
}


    input[type="text"],
    input[type="email"],
    select,
    textarea {
        width: 100%;
        padding: 8px 12px;
        margin-top: 6px;
        margin-bottom: 14px;
        border: 1.5px solid #d1d5db;
        border-radius: 8px;
        font-size: 1rem;
        color: #333;
        transition: border-color 0.3s ease;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 4px rgba(59,130,246,0.5);
    }

    textarea {
        resize: vertical;
    }

    /* Tabla productos y pagos */
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
    }

    thead tr {
        background-color: #f5f7fa;
        border-bottom: 2px solid #e2e8f0;
    }

    thead th {
        padding: 12px 10px;
        text-align: left;
        color: #4b5563;
        font-weight: 600;
        font-size: 0.95rem;
        border-bottom: 2px solid #e2e8f0;
    }

    tbody tr {
        border-bottom: 1px solid #e2e8f0;
        transition: background-color 0.15s ease;
    }

    tbody tr:hover {
        background-color: #f9fafb;
    }

    tbody td {
        padding: 12px 10px;
        color: #374151;
        font-size: 0.95rem;
    }

    /* Botones */
    .boton-fc {
        background-color: #03012d;
        color: white;
        border: none;
        padding: 12px 22px;
        border-radius: 16px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
        transition: background-color 0.3s ease;
        text-decoration: none;
        display: inline-block;
        margin-top: 12px;
    }

    

    /* Botón eliminar pagos */
    tbody td button {
        background-color: transparent;
        color: #ef4444;
        padding: 6px 10px;
        font-size: 1.2rem;
        border-radius: 6px;
    }

    tbody td button:hover {
        background-color: #fee2e2;
    }

	button.btn-cuota-ir-pagar {
    font-size: 12px;
    background: #929292;
    color: white;
    border: none;
    border-radius: 16px;
    padding: 6px 14px;
    cursor: pointer;
    margin-left: 5px;
	}	

    /* Observaciones y comprobante */
    strong {
        color: #4b5563;
    }

    /* Imágenes comprobantes */
    img {
        /*box-shadow: 0 3px 8px rgba(0,0,0,0.1);*/
    }

.botones {
	margin-top: 20px;
    gap: 10px;
    display: flex;
    justify-content: flex-end;
}

h3.titulos-venta {
    font-size: 24px;
}

form.form-pagar-cuota {
    padding: 0px;
}

button.btn-cuota-pagar {
	letter-spacing: normal;
    font-weight: 600;
	margin-left: 16px;
    font-size: 15px;
    padding: 10px;
    background: #b4b4b4;
    color: white;
    border: none;
    border-radius: 7px;
    cursor: pointer;
}

button.btn-cuota-pagar:hover {
    background-color: #525252;
}

.cuota-info-venta {
    display: flex;
    margin-bottom: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

select.select-dt-cuota {
    margin: 0px;
    margin-right: 10px;
    padding: 5px;
    width: 160px;
}

.setion-ventas1 {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.mount-total-venta {
    padding: 20px;
}

p.mount-venta {
    display: flex;
    justify-content: space-between;
}

.countainer-info-cliente {
    margin-top: 20px;
}

.header-nro-ventas {
    margin-bottom: 20px;
    padding-left: 10px;
    font-size: 26px;
}

.info-nro-venta {
    font-weight: 700;
}

.conutainer-infov {
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.items-text {
	font-size: 15px;
    border-radius: 10px;
    padding: 5px 10px 5px 10px;
    background-color: #4ade8030;
    font-weight: 600;
    color: #065f46;
    margin-left: 10px;
}

.date-cuota-text {
	background-color: transparent;
    border: 1px solid #dcdc;
    padding: 7px;
    border-radius: 10px;
}

select.select-status-cuota{
	padding: 7px;
    border-radius: 10px;
	margin-bottom: 6px;
}
.recibo-id-text{
	background: #eee;
    font-size: 12px;
    border-radius: 16px;
    padding: 5px 10px;
}