.aec-mini-details a {
  text-decoration: underline;
  color: inherit;
  position: relative;
  transition: color 0.3s ease;
}

.aec-mini-details a::after {
  content: '';
  background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/icons/eye.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  display: inline-block;
  opacity: 0;
  margin-left: 6px;
  transform: translateY(2px);
  transition: opacity 0.3s ease;
}

.aec-mini-details a:hover::after {
  opacity: 1;
}

.aec-mini-event.aec-current-event {
 
  border-left: 2px solid #0073aa;
  padding-left: 8px;
  
}

.aec-highlighted-event {
  border: 0px solid #0073aa;
  background-color: #f0f8ff;
  border-radius: 0px;
  padding: 10px;
}

.aec-mini-event {
  margin-bottom: 1rem; /* space between each event */
  padding-bottom: 0.5rem;
  border-bottom: 0px solid #ddd;
  margin: 5px 5px;
}

.aec-mini-date {
  padding: 4px 10px;
  border-radius: 4px;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95em;
}

.aec-category-icon {
  width: 24px;
  height: 24px;
}

.aec-mini-calendar {
    border-left: 2px solid #069;
    padding-left: 0px;
    margin-top: 25px;
}

.fc-event-title {
    white-space: normal !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    font-size: 12px;
}
.aec-tooltip {
    display: none;
    position: absolute;
    background: #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.85em;
    z-index: 9999;
    white-space: normal;
    max-width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    pointer-events: none;
    transform: translateY(-100%);
}
