.file-input-container {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

    #drop-area {
      cursor: pointer;
      width: 100%;
      height: auto;
      min-height: 100px;
      border: 2px dashed #ccc;
      margin: 20px auto;
      text-align: center;
      padding: 20px;
      border-radius: 10px;
      background: white;
      transition: all .3s;
    }

    #drop-area:hover{
      background: #f1f1f1;
    }

    #image-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
    }

    .image-item {
      margin: 5px;
      position: relative;
    }

    .image-item img{
      border-radius: 5px;
    }

    .delete-button {
      cursor: pointer;
      position: absolute;
      top: 5px;
      right: 5px;
      background-color: #fbe7e6;
      border-radius: 5px;
      color: white;
      border: none;
      padding: 4px 5px 0px 5px;
      cursor: pointer;
      font-size: 16px;
      display: none;
      transition: all .3s;
    }

    .image-item:hover .delete-button {
      display: block;
    }

    /*image gallery*/

    .image-container {
      display: flex;
      flex-wrap: wrap;
    }

    .image-container img {
      width: 100%;
      height: auto;
      margin: 5px;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .overlay button {
      background-color: #007bff;
      color: #fff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
    }

    .image-container:hover .overlay {
      opacity: 1;
    }