/* General Styles */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #f3ec78, #af4261);
    color: #333;
  }
  
  header {
    text-align: center;
    padding: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  main {
    padding: 20px;
  }
  
  /* Upload Section */
  .upload-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .upload-section h2 {
    color: white;
  }
  
  .upload-section input[type="file"] {
    margin: 10px 0;
  }
  
  .upload-section button {
    background-color: #ff477e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .upload-section button:hover {
    background-color: #e6396f;
  }
  
  /* Gallery Section */
  .gallery-section {
    text-align: center;
  }
  
  .gallery-section h2 {
    color: white;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .gallery-item {
    position: relative;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .gallery-item button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
  }
  
  .gallery-item button:hover {
    background: rgba(255, 0, 0, 1);
  }
  
  footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
  }
  