/* Dashboard-specific styles */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.filter-active {
  position: relative;
  overflow: hidden;
}

.filter-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

/* Card styles */
.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.event-card-footer {
  margin-top: auto;
}

.event-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4rem;
}

/* Tag styles */
.tag {
  transition: all 0.2s;
  white-space: nowrap;
}

.tag:hover {
  transform: translateY(-2px);
}
