/* dropimage.css */
    
  .preview-container {
    width: 100%; /* Adjust width as needed */
    height: 300px; /* Adjust height as needed */
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid #e2e2e2; /* Lighter border */
  }
  
  #placeholder-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    color: #6c757d;
  }
  
  #preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px; /* Keep border-radius for consistency */
    border: 1px solid transparent;
  }
  
  #preview-image-label {
    display: none; /* Hide the label */
  }
    
  .dropzone {
    width: 100%;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    background-color: #f3f8fe;
    border: 2px dotted #c6ddfa;
  }

  .upload-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .upload-button:hover {
    background-color: #005ba3;
  }

  #custom-dropzone {
    /* Ensure there's enough space for the card */
    min-height: 250px; /* Adjust based on your card size */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}