.sticky-flash {
  position: fixed;
  top: 0; /* 56px; /* Adjust based on navbar height */
  z-index: 1050; /* Ensure it's on top */
  left: 0;
  right: 0;
  width: 100vw; /* Full viewport width */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

.exercise-custom {
  /*box-shadow: 0px 0px 14px 0px rgba(204, 204, 204, 1);*/
  box-shadow: 0px 0px 14px 0px rgba(204, 204, 204, 1);
  border: 4px solid #eee;

  display: block;
  overflow: hidden;
  /*height: 280px*/
}

.a-custom {
  color: black !important;
  text-decoration: none;
}

.exercise-date {
  text-align: center;
}

.exercise-title {
  text-align: center;
  /*height: 2.5em;*/
  /*font-size: 1.0em;*/
  margin: 5px;
  font-weight: 600;
}

.exercise-thumbnail {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Horizontally center the thumbnail */
  align-items: center;
  padding: 10px;
}


.star-rating {
  direction: rtl;
  display: inline-block;
  cursor: pointer;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: #ddd;
  font-size: 24px;
  padding: 0 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #ffc107;
}

.btn-custom {
  height: fit-content;
  width: fit-content;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  color: darkred;
  font-size: 1.2rem;
}


.btn-orange {
  background-color: #ff5233;
  color: white;
}

.btn-orange:hover {
  background-color: #d93a18;
  color: white;
}

a.btn-orange:active,
button.btn-orange:active {
  background-color: #d93a18 !important;
  color: white !important;
  box-shadow: none !important;
}

.btn-orange.active {
  background-color: #d93a18;
  color: white;
}

.btn-orange:focus-visible {
  background-color: #d93a18;
  color: white;
}

.custom-block {
  padding: 10px;
  box-shadow: 0px 0px 14px 0px rgba(204, 204, 204, 1);
  border: 4px solid #eee;
  height: 100%;
  /*margin: 0px 0px 5px 0px;*/
}