* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.btn-circle.btn-xl {
  width: 75px;
  height: 65px;
  padding: 10px;
  border-radius: 20px;
  font-size: 12px;
  text-align: center;
}

.truncate-cell {
  max-width: 200px; /* Establece aquí el ancho máximo deseado */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.button-container button {
  margin-left: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.button-container button.hidden {
  opacity: 0;
}
