
.light-pink{
    background-color: rgb(241, 169, 181);
}

.light-green{
    background-color: rgb(129, 143, 103);
}
.light-slate{
    background-color: rgb(199, 188, 127);
}

.progress-circle1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;

    /* background: conic-gradient(#22c55e 0% 70%, #e5e7eb 70% 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress-circle2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;

  /* background: conic-gradient(#348fdf 0% 30%, #e5e7eb 30% 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.notif-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 50px;
    padding: 4px 6px;
    border-radius: 50%;
}

.schedule-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 6px;
}


.schedule-card .card-top {
    display: flex;
    flex-direction: column;
    height: 120px;   
}
.card-top p {
  font-size: 14px;
  line-height: 1.3;
  max-height: 40px;     /* controls card size */
  overflow: hidden;
}

.schedule-card .card-bottom {
    margin-top: auto;
}
.rating-div {
  margin-top: 4px;
}

.card-bottom .d-flex {
  margin-top: 6px !important;
}
/* container scroll */
.schedule-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;              /* ✅ enable scroll */
    scroll-behavior: smooth;
    
    /* hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;

    /* snap effect */
    scroll-snap-type: x mandatory;
}

.schedule-scroll::-webkit-scrollbar {
    display: none;
}

/* each card width = 25% (4 cards visible) */
.schedule-scroll .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    scroll-snap-align: start;
}

/* optional: full height cards */
.schedule-scroll .col-lg-3 > div {
    height: 100%;
}
.cursor-pointer {
    cursor: pointer;
}



/* cats reaction */






.cat-reactions {
  display: flex;
  justify-content: space-around;
  align-items: center; 
}

.cat {
  display: flex;              
  align-items: center;        
  gap: 4px;                   
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.cat:hover {
  transform: scale(1.2);
}

.action-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 8px;   
}
.progress-section{
    
    background-color:#bedaf5 ;
}
.rewards-section{
  
    background-color:#bedaf5 ;
}

.parent-message-card {
       display: flex;
  align-items: center;
  gap: 15px;
 
  padding: 15px 18px;
  border-radius: 18px;

  background: linear-gradient(135deg, #FFF6E5, #FFE4EC);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);

  margin-bottom: 20px;

}


.message-text {
  font-size: 15px;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.message-from {
  font-size: 12px;
  color: #777;
}






/* cats reaction */

/* tablet → 2 cards */
@media (max-width: 992px) {
    .schedule-scroll .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* mobile → 1 card */
@media (max-width: 576px) {
    .schedule-scroll .col-lg-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}


