@font-face {
  font-family: "Outfit";
  src: url("/fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("/fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@layer base {
  html {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
  }
  .admin-layout {
    font-family: "Inter", system-ui, sans-serif;
  }
}

/* Chrome, Edge, and Safari */
.scroller::-webkit-scrollbar {
  width: 4px;
}

.scroller::-webkit-scrollbar-track {
  background: none;
}

.scroller::-webkit-scrollbar-thumb {
  background-color: #a049d4;
  border-radius: 20px;
  visibility: hidden;
}

.scroller:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

/* Your custom Dropzone styling */
.dropzone {
  min-height: 150px;
  border: 2px dashed #cbd5e1;
  border-radius: 0.5rem;
  background: white;
}

.dropzone.dz-drag-hover {
  border-style: solid;
  background: #f1f5f9;
}

.dropzone .dz-preview {
  margin: 1rem;
}

/* Color preview styling */
.color-preview {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.color-preview:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
} 