/*! Tailwind config */
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    body {
        font-family: 'Inter', sans-serif;
    }
}

@layer utilities {
    .hide-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .hide-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* FullCalendar Custom Premium Styling */
.fc .fc-toolbar-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #0f172a;
    letter-spacing: -0.025em;
}
.dark .fc .fc-toolbar-title {
    color: #f8fafc;
}
.fc .fc-button-primary {
    background-color: #4f46e5 !important;
    border-color: #4f46e5 !important;
    text-transform: capitalize !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.fc .fc-button-primary:hover {
    background-color: #4338ca !important;
}
.fc-theme-standard th {
    border: none !important;
    padding: 12px 0 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    color: #64748b !important;
    letter-spacing: 0.05em;
}
.fc-theme-standard td, .fc-theme-standard th {
    border-color: #f1f5f9 !important;
}
.dark .fc-theme-standard td, .dark .fc-theme-standard th {
    border-color: #1e293b !important;
}
.fc .fc-timegrid-slot {
    height: 3em !important;
}
.fc-event {
    border: none !important;
    border-radius: 6px !important;
    overflow: hidden;
    margin: 1px 2px !important;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
.fc-v-event {
    background-color: transparent !important;
}
