body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

#loading-bg {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  gap: 1rem 0;
  inline-size: 100%;
}

.loading {
  position: relative;
  box-sizing: border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  block-size: 55px;
  inline-size: 55px;
}

.loading .effect-1,
.loading .effect-2,
.loading .effect-3 {
  position: absolute;
  box-sizing: border-box;
  border: 3px solid transparent;
  border-radius: 50%;
  block-size: 100%;
  border-inline-start: 3px solid var(--initial-loader-color, #eee);
  inline-size: 100%;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}

.loading .effect-2 {
  animation: rotate-opacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  animation: rotate-opacity 1s ease infinite 0.2s;
}

.loading .effects {
  transition: all 0.3s ease;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(1turn);
  }
}

@keyframes rotate-opacity {
  0% {
    opacity: 0.1;
    transform: rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: rotate(1turn);
  }
}

.logo-color-text {
  color: #989898 !important
}

.striped-table .v-data-table__tr:nth-child(even) {
  background-color: #f8f9fa;
}

.striped-table .v-data-table__tr:nth-child(odd) {
  background-color: #ffffff;
}


.v-theme--dark .striped-table .v-data-table__tr:nth-child(even) {
  background-color: rgb(49,
    45,
    75);
  /* Color para filas pares en dark mode */
}

.v-theme--dark .striped-table .v-data-table__tr:nth-child(odd) {
  background-color: rgb(40,
    36,
    61);
  /* Color para filas impares en dark mode */
}


/* Estilo para el chip principal */
.status-chip {
  cursor: pointer;
  transition: all 0.2s ease;
}

.status-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Estilo para las opciones del menú */
.status-option {
  cursor: pointer;
  transition: all 0.2s ease;
  padding:0 0;
}

.status-option:hover {
  transform: scale(1.22);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Estilo para la opción seleccionada */
.selected-status {
  border: 2px solid currentColor;
  font-weight: bold;
}

.actions-cell {
  padding: 0 !important;
  margin: 0 !important;
  min-width: 24px !important;
}
