/* Centralized button styles */

/* Button consisting of a single clickable icon */
.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

.icon-btn:hover {
  text-decoration: none;
  color: inherit;
  background-color: rgba(0, 0, 0, 0.1);
}

/* Edit button */
.edit-icon {
  color: #0d6efd;
}

/* Delete button */
.delete-icon {
  color: #dc3545;
}

/* Link buttons */
button.btn-link {
  padding: 0;
  color: #000000;
  text-decoration: none;
}

/* FullCalendar specific styles */
.fc-btn-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5ex;
  margin: 0 2px;
}

.fc-btn-icon:hover {
  background: yellow;
}