/* ===== SISTEMA INTELIGENTE Y COMPACTO MEJORADO ===== */
.search-system-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.tab-header-smart {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn-smart {
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  background: transparent;
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.tab-btn-smart.active {
  background: linear-gradient(135deg, #ff7b3d, #ff9f5a);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 123, 61, 0.3);
  transform: translateY(-1px);
}

.tab-btn-smart:hover:not(.active) {
  background: rgba(255, 123, 61, 0.1);
  color: #ff7b3d;
  transform: translateY(-1px);
}

.property-tab-section-smart {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  min-height: 200px;
}

.filters-smart-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: end;
  max-width: 100%;
  width: 100%;
  transition: all 0.3s ease;
}

.filters-smart-proyectos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: end;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
  justify-items: center;
}

/* Específico para contenedor de "Otros" */
#filters-container-otros {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.3s ease;
  justify-items: stretch;
}

#filters-container-otros .filter-group-smart {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#filters-container-otros .filter-group-wide {
  grid-column: 1;
  min-width: 100%;
  max-width: 100%;
}

#filters-container-otros .search-button-smart {
  grid-column: 1;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.filter-group-smart {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  opacity: 0;
  animation: slideInUp 0.5s ease forwards;
}

.filter-group-wide {
  grid-column: 1 / -1;
  min-width: 100%;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-label-smart {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.filter-label-smart i {
  color: #ff7b3d;
  width: 14px;
  font-size: 0.9rem;
}

.select-wrapper-smart {
  position: relative;
}

.select-wrapper-smart select {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 0.9rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  color: #2c3e50;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.select-wrapper-smart select:focus {
  outline: none;
  border-color: #ff7b3d;
  box-shadow: 0 0 0 3px rgba(255, 123, 61, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.select-wrapper-smart select:hover {
  border-color: #ff9f5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.select-arrow-smart {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.select-wrapper-smart:hover .select-arrow-smart {
  color: #ff7b3d;
  transform: translateY(-50%) rotate(180deg);
}

.select-wrapper-smart select:focus + .select-arrow-smart {
  color: #ff7b3d;
  transform: translateY(-50%) rotate(180deg);
}

.textarea-wrapper-smart textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 80px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.textarea-wrapper-smart textarea:focus {
  outline: none;
  border-color: #ff7b3d;
  box-shadow: 0 0 0 3px rgba(255, 123, 61, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.textarea-wrapper-smart textarea:hover {
  border-color: #ff9f5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== MODAL DE DATOS DEL CLIENTE - DISEÑO ELEGANTE ===== */
#modal-datos .modal-container-smart {
  max-width: 520px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#modal-datos .modal-header-smart {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffaa5a 100%);
  padding: 25px 30px;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

#modal-datos .modal-header-smart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

#modal-datos .modal-header-smart h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

#modal-datos .modal-header-smart h3 i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

#modal-datos .modal-close-smart {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

#modal-datos .modal-close-smart:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#modal-datos .modal-body-smart {
  padding: 40px 35px 35px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.datos-cliente-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group-smart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.form-group-smart .filter-label-smart {
  font-weight: 700;
  color: #2c3e50;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group-smart .filter-label-smart i {
  color: #ff6b35;
  width: 18px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
  padding: 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-smart {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 16px;
  font-size: 1rem;
  background: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #2c3e50;
  font-weight: 500;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  font-family: inherit;
  position: relative;
  z-index: 1;
}

.input-smart::placeholder {
  color: #94a3b8;
  font-weight: 400;
  font-style: italic;
}

.input-smart:focus {
  outline: none;
  border-color: #ff6b35;
  background: linear-gradient(135deg, #ffffff, #fef7f3);
  box-shadow: 
    0 0 0 4px rgba(255, 107, 53, 0.1),
    0 10px 25px -5px rgba(255, 107, 53, 0.2),
    0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.input-smart:hover:not(:focus) {
  border-color: #ff8c42;
  transform: translateY(-1px);
  box-shadow: 
    0 8px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

/* Efectos de entrada elegantes */
.form-group-smart {
  opacity: 0;
  transform: translateY(20px);
  animation: formGroupSlideIn 0.6s ease forwards;
}

.form-group-smart:nth-child(1) { animation-delay: 0.1s; }
.form-group-smart:nth-child(2) { animation-delay: 0.2s; }
.form-group-smart:nth-child(3) { animation-delay: 0.3s; }

@keyframes formGroupSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#modal-datos .modal-footer-smart {
  padding: 25px 35px 35px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
}

#modal-datos .btn-principal-smart {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  justify-content: center;
  box-shadow: 
    0 10px 25px -5px rgba(255, 107, 53, 0.4),
    0 4px 6px -1px rgba(255, 107, 53, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

#modal-datos .btn-principal-smart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

#modal-datos .btn-principal-smart:hover::before {
  left: 100%;
}

#modal-datos .btn-principal-smart:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 40px -10px rgba(255, 107, 53, 0.5),
    0 8px 16px -4px rgba(255, 107, 53, 0.3);
  background: linear-gradient(135deg, #ff5722, #ff7043);
}

#modal-datos .btn-principal-smart:active {
  transform: translateY(-1px) scale(0.98);
}

#modal-datos .btn-cerrar-smart {
  background: linear-gradient(135deg, #64748b, #475569);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3);
}

#modal-datos .btn-cerrar-smart:hover {
  background: linear-gradient(135deg, #475569, #334155);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
}

/* Responsive para el modal elegante */
@media (max-width: 768px) {
  #modal-datos .modal-container-smart {
    max-width: 95%;
    margin: 15px;
    border-radius: 20px;
  }
  
  #modal-datos .modal-header-smart {
    padding: 20px 25px;
  }
  
  #modal-datos .modal-header-smart h3 {
    font-size: 1.2rem;
  }
  
  #modal-datos .modal-body-smart {
    padding: 30px 25px 25px;
  }
  
  .datos-cliente-form {
    gap: 22px;
  }
  
  .input-smart {
    padding: 15px 18px;
    font-size: 0.95rem;
  }
  
  #modal-datos .modal-footer-smart {
    padding: 20px 25px 30px;
    flex-direction: column;
    gap: 15px;
  }
  
  #modal-datos .btn-principal-smart,
  #modal-datos .btn-cerrar-smart {
    min-width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

.search-button-smart {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-principal-smart {
  background: linear-gradient(135deg, #ff7b3d, #ff9f5a);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 123, 61, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-principal-smart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 123, 61, 0.4);
  background: linear-gradient(135deg, #ff6b2d, #ff8f4a);
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #20c25a, #108f71);
}

.btn-arrow-smart {
  transition: transform 0.3s ease;
}

.btn-principal-smart:hover .btn-arrow-smart {
  transform: translateX(5px);
}

.hidden {
  display: none !important;
}

/* Modales y responsive aquí */
.modal-overlay-smart {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-container-smart {
  background: white;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideInSmart 0.4s ease;
}

@keyframes modalSlideInSmart {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header-smart {
  padding: 20px 20px 15px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-smart h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-header-smart h3 i {
  color: #4CAF50;
}

.modal-close-smart {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-smart:hover {
  background: #f5f5f5;
  color: #ff7b3d;
}

.modal-body-smart {
  padding: 15px 20px;
}

.resumen-items-smart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resumen-item-smart {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  border-left: 4px solid #ff7b3d;
  transition: all 0.3s ease;
}

.resumen-item-smart:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.resumen-item-smart i {
  font-size: 1.2rem;
  color: #ff7b3d;
  width: 20px;
}

.resumen-item-smart strong {
  color: #2c3e50;
  font-size: 0.95rem;
}

.resumen-item-smart p {
  margin: 2px 0 0;
  color: #666;
  font-size: 0.85rem;
}

.modal-footer-smart {
  padding: 15px 20px 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-pagar-smart {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-pagar-smart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.maintenance-modal-smart {
  max-width: 380px;
}

.maintenance-header-smart {
  text-align: center;
  flex-direction: column;
  gap: 15px;
  border-bottom: none;
  padding-bottom: 15px;
}

.maintenance-icon-smart {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff7b3d, #ff9f5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(255, 123, 61, 0.3);
}

.maintenance-icon-smart i {
  font-size: 1.5rem;
  color: white;
}

.maintenance-body-smart {
  text-align: center;
  padding: 15px 20px;
}

.progress-bar-smart {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin: 15px 0;
}

.progress-fill-smart {
  width: 75%;
  height: 100%;
  background: linear-gradient(135deg, #ff7b3d, #ff9f5a);
  animation: progressPulseSmart 2s ease-in-out infinite;
  border-radius: 3px;
}

@keyframes progressPulseSmart {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.banks-grid-smart {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 15px 0;
}

.bank-item-smart {
  padding: 10px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.bank-item-smart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bank-item-smart i {
  color: #ff7b3d;
  font-size: 1rem;
}

.maintenance-message-smart {
  margin-top: 15px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(255, 123, 61, 0.1), rgba(255, 159, 90, 0.1));
  border-radius: 10px;
  border-left: 4px solid #ff7b3d;
  font-size: 0.9rem;
  color: #2c3e50;
}

.btn-contactar-smart {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-contactar-smart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-cerrar-smart {
  background: #6c757d;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-cerrar-smart:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* ===== ICONOS GIRATORIOS PARA BOTONES DINÁMICOS ===== */
.fa-spin {
  animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .search-system-container {
    padding: 0 15px;
  }
  
  .property-tab-section-smart {
    padding: 20px;
  }
  
  .filters-smart-servicios,
  .filters-smart-proyectos {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100% !important;
  }
  
  /* Específico para contenedor de "Otros" en móvil */
  #filters-container-otros {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100%;
    padding: 0;
  }
  
  #filters-container-otros .filter-group-smart {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  #filters-container-otros .filter-group-wide {
    grid-column: 1;
    min-width: 100%;
    max-width: 100%;
  }
  
  .filter-group-smart {
    min-width: 100%;
  }
  
  .tab-btn-smart {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
  
  .banks-grid-smart {
    grid-template-columns: 1fr;
  }
  
  .modal-container-smart {
    max-width: 95%;
    margin: 10px;
  }
  
  .btn-principal-smart {
    min-width: 160px;
    font-size: 0.9rem;
    padding: 12px 25px;
  }
  
  /* Responsive para formulario de datos del cliente */
  .datos-cliente-form {
    gap: 15px;
  }
  
  .form-group-smart {
    gap: 6px;
  }
  
  .input-smart {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}