/* Estilos generales */
.cotizador-form {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #222;
}

/* Agrupación de campos cliente + fecha */
.cotizador-form-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.cotizador-form .form-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

.cotizador-form .form-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.cotizador-form .form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Tabla de productos */
.cotizador-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.cotizador-table th,
.cotizador-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.cotizador-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Botón */
.cotizador-boton {
  text-align: right;
  margin-top: 20px;
}

.boton-cotizador {
  padding: 12px 30px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-cotizador:hover {
  background-color: #333;
}

/* Responsive para pantallas chicas */
@media (max-width: 600px) {
  .cotizador-form-header {
    flex-direction: column;
  }

  .cotizador-form .form-group {
    width: 100%;
  }

  .cotizador-boton {
    text-align: center;
  }
}

.cotizador-form input[type="text"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  height: auto;         /* ✅ asegurate de que NO tenga height fija */
  box-sizing: border-box;
  resize: none;         /* opcional para evitar cambios manuales */
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border-radius: 8px;
  box-sizing: border-box;
}

