.hr {
  background-color: #ddd !important;
  border: 1px solid #ddd !important;
  margin-top: 24px !important;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.text-font {
  color: #333;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #f1f1f1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  color: #ea2976;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(232, 232, 232, 0.7);
  border-radius: 16px;
  box-shadow: 0 2px 4px #00000014;
  position: relative;
  transition: all 0.2s ease-in-out;
  width: 100%;
}

.navbar .navbar-menu-wrapper .navbar-nav .nav-item.nav-profile img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: #ea2976 solid 1px;
}

.navbar
  .navbar-menu-wrapper
  .navbar-nav
  .nav-item.dropdown
  .count-indicator
  .count {
  position: absolute;
  left: 36%;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #ea2976;
  top: 1px;
  border: 1px solid #ffffff;
}

.notification {
  animation: bounceAndColorChange 1s ease-in-out;
}

@keyframes bounceAndColorChange {
  0%,
  100% {
    transform: translateY(0);
    background-color: #ea2976;
  }

  50% {
    transform: translateY(-10px);
    background-color: #ffcc29;
  }
}

.expandable-table thead tr th {
  background: #ea2976;
  padding: 10px;
  color: #ffffff;
  font-size: 14px;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  text-transform: capitalize;
  padding: 10px;
  font-size: 12px;
  position: relative;
  font-weight: 700 !important;
}

.table th,
.table td {
  border-bottom: 1px solid #d1d7db !important;
  font-weight: 400;
  color: #000000;
  height: 25px;
  line-height: 22px;
}

.table th {
}

.table td {
}

/* Estilos para dispositivos móviles */
@media screen and (max-width: 767px) {
  .table {
    font-size: 10px; /* Reducir el tamaño de fuente en pantallas pequeñas */
    padding: 5px; /* Reducir el padding en pantallas pequeñas */
  }

  .table th,
  .table td {
    height: auto; /* Ajustar la altura de las celdas automáticamente */
    line-height: normal; /* Ajustar el line-height automáticamente */
    white-space: nowrap; /* Evitar el salto de línea en celdas de contenido largo */
  }

  .table td {
    display: block; /* Mostrar celdas como bloques para que ocupen toda la pantalla */
    width: 100%; /* Asegurar que ocupen todo el ancho disponible */
    box-sizing: border-box; /* Incluir el padding y borde en el ancho */
  }

  .table tr {
    display: flex; /* Usar flexbox para alinear el contenido de las filas */
    flex-wrap: wrap; /* Permitir que las filas se ajusten al ancho de la pantalla */
    justify-content: space-between; /* Alinear el contenido de las filas en el espacio disponible */
    margin-bottom: 5px; /* Agregar un margen inferior entre las filas */
  }

  .table th {
    display: none; /* Ocultar los encabezados en pantallas pequeñas */
  }

  .table td:before {
    /* Mostrar los encabezados como etiquetas antes del contenido */
    content: attr(data-label);
    font-weight: 700;
    margin-right: 5px;
  }
}

.text-primary,
.list-wrapper .completed .remove {
  color: #ea2976 !important;
}

/* Estilos generales para las tarjetas */
.my-card {
  border: 1px solid #ea2976;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.my-card-title {
  font-size: 1.25rem;
  margin: 1rem 0;
  text-decoration: none;
}

.card-title {
  text-decoration: none !important;
}

.my-card-image {
  width: 64px; /* Ajusta el tamaño de la imagen según tus preferencias */
  margin-bottom: 10px;
}

.spinner-button {
  position: relative;
}
.spinner-button .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  display: none; /* El spinner estará oculto inicialmente */
}
.spinner-button.loading .spinner-border {
  display: inline-block; /* Muestra el spinner cuando el botón está en modo de carga */
}

.badge {
  border-radius: 20px;
  font-size: 12px;
  line-height: 1;
  padding: 0.375rem 0.5625rem;
  font-weight: normal;
  color: #fff;
}

.bg-danger,
.settings-panel .color-tiles .tiles.danger {
  background-color: #ea2976 !important;
}

.list-group-item {
  background-color: #fff;
  border: 1px solid rgba(232, 232, 232, 0.7);
  border-radius: 20px;
  box-shadow: 0 2px 4px #00000014;
  position: relative;
  transition: all 0.2s ease-in-out;
  width: 100%;
  margin-bottom: 10px;
}

.text-big {
  font-size: 40px;
  font-weight: 600;
  line-height: 38px;
  text-align: start;
}

.money {
  font-size: 40px;
  line-height: 48px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #000 !important;
  text-decoration: none;
}
