@import "tailwindcss";

@theme {
    --color-primary: rgba(99, 137, 87, 1);
    --color-secondary: rgba(251, 244, 227, 0.9);
    --color-red: rgba(224, 24, 57, 1);
    --color-gray: rgba(62, 62, 62, 0.1);
    --color-text: rgba(62, 62, 62, 1);
    --color-input-bg: rgba(228, 228, 228, 0.9);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Smooth scrolling behavior */
.scroll-smooth {
    scroll-behavior: smooth;
}