body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}
.container {
  text-align: center;  
}
h1 {
  font-size: 1.8rem;
  color: #ff9900;
  margin-bottom: 20px;
}
h5 {
  font-size: 1rem;
  color: #ff9900;
  margin-bottom: 20px;
}
#uploadIcon {
  display: inline-block;
  font-size: 2rem;
  color: #ff9900;
  cursor: pointer;
  margin-bottom: 20px;
  transition: color 0.3s;
}
#uploadIcon:hover {
  color: #0056b3;
}
#imageUpload {
  display: none;
}
#preview img {
  width: 100px;
  margin: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
}
.progress-bar {
  width: 100%;
  background-color: #ddd;
  border-radius: 5px;
  margin-top: 20px;
  overflow: hidden;
}
.progress {
  width: 0%;
  height: 10px;
  background-color: #ff9900;
  transition: width 0.3s ease;
}

#status {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  transition: color 0.3s, font-size 0.3s;
}
/* Success message */
#status.success {
  color: #ff9900;  /* Green */
  font-size: 1.2rem;
}
/* Error message */
#status.error {
  color: #dc3545;  /* Red */
  font-size: 1.2rem;
}
/* Button Styling */
#botongaleria {
  padding: 12px 24px;
  font-size: 1.1rem;
  color: #fff;
  background-color: #ff9900;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

/* Gallery Styling */
#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
  /*display: flex;
  flex-wrap: wrap;*/
}
.gallery a {
  display: inline-block;
  text-decoration: none;
}
#gallery img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
#gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.pagination button {
  padding: 8px 12px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pagination button:hover {
  background-color: #e0e0e0;
}

.pagination button.active {
  background-color: #ff9900;
  color: #fff;
  border-color: #ff9900;
  cursor: default;
}