/* Tailwind CSS - Versión compilada y optimizada para SILAB 3D */
/* Incluye reset, utilidades y componentes usados en el proyecto */

*, *::before, *::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-outer-spin-button, ::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
}

::placeholder {
  opacity: 1;
  color: #9ca3af;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::marker {
  color: #6b7280;
}

::-moz-color-swatch, ::-webkit-color-swatch {
  border: 1px solid #e5e7eb;
  border-radius: 0;
}

/* Flexbox utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.grid { display: grid; }

/* Width & Height */
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Margin & Padding */
.m-0 { margin: 0; }
.p-0 { padding: 0; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Responsive */
@media (max-width: 768px) {
  .md\:hidden { display: none; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
}
