body {
    text-align: center;
}
.container {
    max-width: 800px;
    margin: auto;
    padding: 25px;
    min-height: 100vh;
}
h1 {
  margin-bottom: 20px;
}
.drop-box {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  background: #fafafa;
  margin-bottom: 20px;
  transition: 0.3s;
}
.drop-box:hover {
  background: #eaf6ff;
}
.browse-box {
  text-align: center;
  margin-bottom: 20px;
}
.browse-box label {
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    background: #007bff linear-gradient(to bottom, #007bff, #003f0e);
}
.browse-box input {
  display: none;
}
.preview img {
  max-width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}
.custom-dropdown {
  margin-top: 20px;
  position: relative;
}
.dropdown-selected {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
}
.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 10;
  flex-wrap: wrap;
}
.dropdown-options div {
  border: 1px solid #ccc;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    margin: 10px;
}
.dropdown-options div:hover {
  background: #f2f2f2;
}
button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 500px;
    cursor: pointer;
    background: #28a745 linear-gradient(to bottom, #28a745, #003f);
}
.download-link {
  text-align: center;
  margin-top: 20px;
}
.download-link a {
  background: #007bff linear-gradient(to bottom, #007bff, #003f0e);
  color: white;
  padding: 12px 20px;
  border-radius: 500px;
  text-decoration: none;
}
.preview img {
max-width: 100%;
border-radius: 8px;
margin-bottom: 10px;
outline: 1px solid #000;
}
.preview {
text-align: center;
}