/* Calendar Dropdown Styles */
.calendar-dropdown {
  position: relative;
}

.calendar-dropdown-toggle {
  background-color: transparent !important;
  background-repeat: no-repeat;
  border: 0 !important;
  height: 32px;
  min-width: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s;
}

.calendar-dropdown-toggle:hover {
  opacity: 0.7;
}

.calendar-dropdown-toggle img {
  width: 32px;
  height: 32px;
}

.calendar-dropdown-menu {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 260px;
  z-index: 100;
  padding: 8px 0;
  margin-bottom: 8px;
}

.calendar-dropdown-menu::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

.calendar-dropdown.open .calendar-dropdown-menu {
  display: block;
}

.calendar-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #030928;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s;
}

.calendar-dropdown-item:hover {
  background-color: #f5f5f5;
  text-decoration: none;
  color: #030928;
}

.calendar-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.calendar-icon--google {
  background-image: url('/themes/custom/leon_copy/images/icons/google-calendar.svg');
}

.calendar-icon--outlook {
  background-image: url('/themes/custom/leon_copy/images/icons/outlook-calendar.svg');
}
