/* Extra CSS to ensure dropdown menu items take full width on hover */
.dropdown-menu {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 4px;
  /* Position the dropdown to align with the right edge of the parent */
  right: 0 !important; 
  left: auto !important;
  transform: translateX(0) translateY(10px) !important;
  min-width: 200px !important;
  width: auto !important;
}

.dropdown-container:hover .dropdown-menu {
  transform: translateX(0) translateY(0) !important;
}

.dropdown-menu > li {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dropdown-menu > li > a.dropdown-item {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.75rem 1rem !important;
  margin: 0 !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu > li:last-child > a.dropdown-item {
  border-bottom: none;
}

.dropdown-menu > li > a.dropdown-item:hover {
  background-color: rgba(211, 47, 47, 0.15) !important;
  color: #D32F2F !important;
}
