/* Definición de fuentes Inter */
@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/static/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Estilos base para todos los iconos */
[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: -0.125em;
  color: currentColor;
  margin-right: 0.75rem;
}

/* Tamaños de iconos */
.icon-sm {
  width: 1em;
  height: 1em;
}

.icon-lg {
  width: 1.5em;
  height: 1.5em;
}

.icon-xl {
  width: 2em;
  height: 2em;
}

/* Estilos específicos para la navegación */
.sidebar-link [class^="icon-"],
.sidebar-link [class*=" icon-"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Estilos para iconos en botones de acción */
.post-action-button [class^="icon-"],
.post-action-button [class*=" icon-"] {
  margin-right: 0.5rem;
}

/* Estilos para iconos en el chat */
.chat-input-action [class^="icon-"],
.chat-input-action [class*=" icon-"] {
  margin-right: 0;
}

/* Estilos para iconos en categorías */
.category-icon [class^="icon-"],
.category-icon [class*=" icon-"] {
  width: 2rem;
  height: 2rem;
  margin-right: 0;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

