/* Custom CSS for the frontend */
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.5s;
  position: relative;
  min-height: 410px;
}

.btn-card {
  margin-top: 5px;
}

.card.loading .card-body {
  opacity: 0;
  pointer-events: none;
}

.card.loading .skeleton {
  display: block;
}

.skeleton {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: skeleton-loading 1.5s infinite;
  padding: 0 10px 0 10px;
}

/* @keyframes skeleton-loading {
  0% {
    background-color: #e0e0e0;
  }
  50% {
    background-color: #cfcfcf;
  }
  100% {
    background-color: #e0e0e0;
  }
} */

.skeleton-header {
  height: 35px;
  background-color: #eeeeee;
  margin-top: 50px;
  margin-bottom: 10px;
}

.skeleton-content {
  height: 15px;
  background-color: #eeeeee;
  margin-bottom: 10px;
}

.card-text {
  margin-bottom: 7px !important;
}

.btn-secondary {
  background-color: #37414e !important;
}
.btn-primary {
  background-color: #fd8b2d !important;
  border-color: #fd8b2d;
  color: #232425;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #fd8b2d !important;
  border-color: #fd8b2d;
  color: #232425;
  font-weight: 600;
}
.card {
  border: 2px solid rgba(0, 0, 0, 0.125);
}
