body {
  font-family: Arial, sans-serif;
  padding: 20px;

  text-align: center;
}

h2 {
  margin-bottom: 20px;
}

.upload-form input,
.upload-form button {
  margin: 5px;
  padding: 8px;
}

.upload-form button {
  color: white;
  border: none;
  cursor: pointer;
}

.gallery-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
  overflow-x: auto;
  -ms-overflow-style: none; 
  scrollbar-width: none;    
.gallery-wrapper::-webkit-scrollbar {
  display: none;  

}

.gallery {
  display: inline-flex;
  gap: 10px;
}

.photo-block {
  display: inline-block;
}

.photo-container {
  position: relative;
  width: 150px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px;
  font-size: 13px;
  text-align: center;
}
