  .image-upload-container {
    position: relative;
    border: 2px dashed #dee2e6;
    border-radius: .375rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: background-color .2s ease-in-out;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-upload-container:hover {
    background-color: #f8f9fa;
  }


  .image-preview-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
  }

  .image-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: .375rem;
  }

  .remove-image-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(220, 53, 69, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
  }