.reminder-container {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  background-color: #f8f9fa;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.reminder-container.show {
  transform: translateX(0);
}

.reminder-item {
  padding: 15px;
  border-radius: 10px;
  background: white;
  margin-bottom: 12px;
  border-left: 4px solid #0d6efd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.reminder-item:hover {
  transform: translateY(-2px);
}

.reminder-item.priority-high {
  border-left-color: #dc3545;
}

.reminder-item.priority-medium {
  border-left-color: #ffc107;
}

.reminder-item.priority-low {
  border-left-color: #198754;
}

.reminder-header {
  background-color: white;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.delete-btn {
  background: none;
  border: none;
  color: #dc3545;
  opacity: 0.7;
  transition: all 0.2s;
}

.delete-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}




#reminderCount {
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  padding: 2px 4px;
  top: -2px !important;
}

.nav-link {
  line-height: 1;
}

