﻿
.tile {
  display: inline-block;
  width: 200px;
  height: 200px;
  background-color: white;
  margin: 10px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}

.tile:focus {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  outline: none;
}

.tile-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tile-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.tile-description {
  font-size: 12px;
}

.tile-container {
  overflow-y: scroll !important;
  align-items: center;
  justify-content: center;
}
