.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #333;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-family: sans-serif;
  min-width: 250px;
  /* Animation logic */
  animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.fade-out {
  animation: fadeOut 0.5s ease-in forwards;
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateY(10px); }
}

.main-grid {
    flex: 1 1 0;
    min-height: 0;
}

.dropzone-container {
    height: 100%;
    max-height: 100%;
    min-height: 0;
    overflow: hidden;
}

#drop-form-zone {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    max-height: 100% !important;
}

#drop-form-zone .dz-message {
    flex-shrink: 0 !important;
}

#drop-form-zone .previews {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    flex: 1 !important;
    min-height: 0 !important;
    max-height: none !important;
}

.dropzone {
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
}
.dropzone:hover {
    border-color: #3b82f6;
    background-color: #eff6ff;
}
.dropzone.dz-drag-hover {
    border-color: #2563eb;
    background-color: #dbeafe;
}
.dz-preview.dz-image {
  display:none;
  max-height: 0%;
}