
   @tailwind utilities;
   @import "tailwindcss";
@plugin "daisyui";

/* Floating animation for François greeting */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.francois-greeting {
  animation: float 3s ease-in-out infinite;
}

/* Custom upload zone styles */
.upload-zone {
  border: 2px dashed #d1d5db;
  border-radius: 0.75rem;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background-color: #fafafa;
}

.upload-zone:hover {
  border-color: #9333ea;
  background-color: #faf5ff;
}

.upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.upload-icon {
  position: relative;
  display: inline-block;
}

.plus-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background-color: #9333ea;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.image-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-preview.hidden {
  display: none;
}

.upload-prompt.hidden {
  display: none;
}