/* lr.css */

/* Notification Container */
#notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.notification {
  color: white;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 0.875rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.notification.success {
  background-color: rgba(16, 185, 129, 0.9); /* green-500 */
}
.notification.error {
  background-color: rgba(220, 38, 38, 0.9); /* red-600 */
}

/* Bee Container Styling */
.bee-container {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  z-index: 50;
}
.bee {
  width: 40px;
  height: auto;
}

/* Fixed Bee Toggle Container (top left) */
#beeToggleContainer {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border-radius: 4px;
}
#beeToggleContainer span {
  color: #fff;
  font-size: 0.875rem;
  margin-right: 8px;
}

/* Custom Toggle Switch Styling (iOS-like) */
.toggle-container {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.toggle-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-label {
  position: absolute;
  cursor: pointer;
  background-color: #4B5563; /* gray-600 */
  border-radius: 9999px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background-color 0.2s ease-in-out;
}
.toggle-label::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 9999px;
  transition: transform 0.2s ease-in-out;
}
.toggle-checkbox:checked + .toggle-label {
  background-color: #3B82F6;
}
.toggle-checkbox:checked + .toggle-label::before {
  transform: translateX(16px);
}


/* Real-time validation styling */
.form-input {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input.border-red-500 {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-input.border-green-500 {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}


html, body {
  height: 100%;
  overflow-y: auto;
}