  body {
  	font-family: sans-serif;
  	background: #f9f9f9;
  	display: flex;
  	justify-content: center;
  	align-items: center;

  	margin: 0;
  }

  .container {
  	background: white;
  	padding: 2rem;
  	border-radius: 8px;
  	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  	width: 100%;
  	max-width: 600px;
  	text-align: center;
  }

  input[type="file"],
  select,
  textarea {
  	margin: 1rem 0;
  	width: 100%;
  	padding: 0.5rem;
  }

  button {
  	background: linear-gradient(to right, #3095AD, #E36EB8);
  	color: white;
  	border: none;
  	padding: 0.8rem 1.2rem;
  	border-radius: 6px;
  	cursor: pointer;
  	font-size: 1rem;
  	transition: 0.3s ease;
  }

  button:hover {
  	opacity: 0.9;
  }

  #image-preview-list img {
  	width: 80px;
  	height: auto;
  	border: 2px solid transparent;
  	cursor: pointer;
  }
