main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Global card */
.card {
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* Option box hover + selection */
.option-box {
  transition: background-color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.option-box:hover {
  background-color: #f8f9fa;
  border-color: #0d6efd;
}

.form-check-input:checked + .form-check-label {
  font-weight: bold;
  color: #0d6efd;
}

/* Buttons */
.btn {
  border-radius: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}

/* ==========================
   Dropdown Menu Styling (Fixed)
========================== */
/* Remove default padding from the dropdown container */
.dropdown-menu {
  padding: 0;
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden; /* Ensures full card coverage */
}

/* Make dropdown items full width */
.dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 12px 16px;  /* balanced padding */
  border-radius: 0;
  transition: background-color 0.2s ease-in-out;
}

/* Hover/active effect */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
  background-color: #0d6efd; /* Blue */
  color: #fff !important;
}

/* Special hover for logout */
.dropdown-menu .dropdown-item.text-danger:hover,
.dropdown-menu .dropdown-item.text-danger:focus,
.dropdown-menu .dropdown-item.text-danger:active {
  background-color: #dc3545; /* Red */
  color: #fff !important;
}

/* Fix divider spacing */
.dropdown-divider {
  margin: 0;
}

