.header-section {
  background-color: #ffca2c;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.card-daget {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border-radius: 1rem;
}

.card-daget:hover {
  background: #c9c0a3;
  transform: translateY(-18px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.card-body-daget {
  border-radius: 16px;
  background: #ffc107;
  position: relative;
  padding-bottom: 3.5rem;
}

/* Extra space for favorite button */

.timer-display {
  font-size: 16px;
  font-weight: bold;
}

.completed-badge {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 1.5rem;
  color: #ffffff;
}

.favorite-btn {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 25px;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s;
}

.favorite-btn.favorited {
  color: #f20000;
}

