/* Reset y estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Utilidades básicas */
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility classes */
.hidden {
  display: none !important;
}

.disabled {
  pointer-events: none !important;
  opacity: 0.6 !important;
}

.enabled {
  pointer-events: auto !important;
  opacity: 1 !important;
}
