
.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;
}



.custom {
  background: #FFF5E1;
  border-radius: 16px;
  padding: 12px;

  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  border: 2px solid #f3d9b1;

  transition: 0.2s ease;
  
  color: #5A4633;  /* warm brown */
   height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}
.custom:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}




.notes-card-pink {
  background: linear-gradient(135deg, #FFE4EC, #FFD6E8);
  border-radius: 22px;
  padding: 18px;
 

  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.3);
}

/* Header */
.notes-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.notes-icon {
  font-size: 20px;
  margin-right: 8px;
}



/* Textarea */
.notes-input {
  width: 100%;
  height: 110px;
  border: none;
  border-radius: 14px;
  padding: 12px;
  resize: none;

  font-size: 14px;
  outline: none;

  background: #fff;
  box-shadow: inset 0 3px 8px rgba(0,0,0,0.05);
}

/* Button */
.notes-actions {
  text-align: right;
  margin-top: 10px;
}

.save-btn {
  background: #FF6B9A;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
}

.save-btn:hover {
  background: #ff4f85;
}




/* css for calendar starts here */
/* overlay */
.task-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);

  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* box */
.popup-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  width: 300px;
  text-align: center;
}

/* buttons */
.popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 15px 0;
}

.popup-btn {
  padding: 12px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s;
}



.done {
  background: #4CAF50;
  color: white;
}

.progress {
  background: #FFC107;
  color: white; /* 🔥 FIX: dark text for yellow */
}

.notdone {
  background: #F44336;
  color: white;
}

.edit , .cancel {
  background: #555454;
  color: #fff;
}

/* reactions */
.popup-reactions span {
  font-size: 22px;
  margin: 5px;
  cursor: pointer;
}
.popup-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


.close-popup {
  margin-top: 15px;
  background: #FF6B9A; 
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: white;

  transition: 0.2s;
}

.close-popup:hover {
  background: #ff4f85;
}

.task-create-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);

  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-top: 10px;
}

.popup-textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-top: 10px;
  resize: none;
  height: 70px;
  font-size: 13px;
}

.calendar-card {
  background: #ffffff;
   /* background: linear-gradient(135deg, #FFF6E5, #FDEBD2); */
  border-radius: 20px;
  padding: 20px;
  margin-top: 15px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.reason-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);

  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.reason-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 15px 0;
}

.reason-options button {
  border: none;
  padding: 10px;
  border-radius: 10px;
  background: #FFE4EC;
  cursor: pointer;
}


.fc .fc-button {
  background: #FF6B9A;
  border: none;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
}

.fc .fc-button:hover {
  background: #ff4f85;
}

.fc .fc-button-primary {
  background: #FF6B9A;
  border: none;
}
.fc-timegrid-slot-label {
  color: #6C5CE7; /* purple */
  font-weight: 500;
}
.fc-col-header-cell {
  background: #FFE4EC; /* light pink */
}

.fc-col-header-cell-cushion {
  color: #5A3E36; /* brown text */
  font-weight: 600;
}

.fc-day-today {
  background: #FFF6E5 !important; /* light cream */
}


