.tile {
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  background-color: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s ease;
  color: var(--bs-body-color);
}

.tile:hover {
  background-color: var(--bs-tertiary-bg);
  transform: translateY(-3px);
}
 
.tile .icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 8px;
}

.tile h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--bs-body-color);
}

.dashboard a,
.instellingen a,
.dashboard a:hover,
.instellingen a:hover {
  text-decoration: none!important;
  color: inherit;
}


.table-hover tbody tr[data-href] {
	cursor: pointer;
}
.table-hover tbody tr[data-href]:hover {
	background-color: #f1f3f5;
}

#uploadForm.dragging {
  border: 2px dashed #0d6efd;
  background: rgba(13,110,253,0.05);
}


.image-wrapper {
  height: 180px;                 /* vaste hoogte zodat alles gelijk lijkt */
  background: #1e1e1e;           /* subtiele achtergrond */
  border-bottom: 1px solid #333; /* scheiding tussen beeld en tekst */
  overflow: hidden;
}

.preview-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;           /* behoud verhouding */
  display: block;
}
