
/** Gallery */
#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.photo-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgb(191, 185, 185);
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.photo-card img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}
.photo-card img:hover {
  transform: scale(1.05);
}
.photo-card .filename {
  font-size: 0.9em;
  margin-bottom: 5px;
  word-break: break-word;
}
.photo-card button {
  margin: 2px;
  padding: 4px 8px;
  font-size: 0.8em;
  cursor: pointer;
  border-radius: 4px;
  border: none;
}
.delete-btn {
  background: #e74c3c;
  color: white;
}
.rotate-btn {
  background: #3498db;
  color: white;
}

/* Modal */
#modal {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  border: 3px solid rgb(148, 148, 148);
  justify-content: center;
  align-items: center;
}
#modal img {
  max-width: 100%;
  max-height: 100%;
}
