.libraryContainer {
  padding: 12px;
}

.openLibraryButton {
  width: 100%;
  padding: 24px;
  border: 2px dashed #d0d0d0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.openLibraryButton:hover {
  border-color: var(--color-primary-accent);
  background: #f8fafc;
}

.libraryIcon {
  width: 40px;
  height: 40px;
  color: #666;
}

.openLibraryButton:hover .libraryIcon {
  color: var(--color-primary-accent);
}

.buttonText {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.buttonSubtext {
  font-size: 12px;
  color: #666;
}

/* Legacy styles for grid view (kept for potential future use) */
.imageGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.imageCard {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 2px solid #e0e0e0;
  background: white;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  transition: all 0.2s;
  padding: 0;
}

.imageCard:hover {
  border-color: var(--color-primary-accent);
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(56, 189, 248, 0.1);
}

.imageCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imageName {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}
