.gallery {
  display: grid;
  gap: 10px;
  padding: 10px;
  grid-auto-rows: 120px;
  grid-template-columns: repeat(4, 200px);
}

.gallery.files {
  height: 100vh;
  width: 30%;
}

.gallery img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.gallery .node {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  border: 3px solid #492e28; /* Default border color */
  transition: all 0.3s ease;
}

.node .label {
  box-sizing: border-box;
  height: 60px;
  width: 200px;
  padding: 0px 4px 4px 4px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}