/* Icon circles for top navigation */
.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #f8f9fc;
  border: 1px solid #e3e6f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in-out;
}

.icon-circle:hover {
  background-color: #eaecf4;
  border-color: #d1d3e2;
  transform: translateY(-1px);
}

.icon-circle i {
  color: #5a5c69;
  width: 1.2rem;
  height: 1.2rem;
}

.icon-circle:hover i {
  color: #3a3b45;
}

/* Reminder count circle for sidebar */
.reminder-count-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #e83e8c;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  min-width: 1.2rem;
}

/* Notification badge for top navigation bell icon */
.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #e83e8c !important; /* Bootstrap pink color */
  color: white !important;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  min-width: 1.2rem;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 9999;
  pointer-events: none;
}
