body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* カスタムスクロールバー */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #1e1e2f;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 3px;
}

/* 背景ぼかし */
.blur-backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* FullCalendarのダークテーマ微調整 */
.fc {
    --fc-border-color: rgba(255, 255, 255, 0.08);
    --fc-page-bg-color: transparent;
    --fc-button-bg-color: rgba(255, 255, 255, 0.05);
    --fc-button-border-color: rgba(255, 255, 255, 0.1);
    --fc-button-hover-bg-color: rgba(255, 255, 255, 0.15);
    --fc-button-hover-border-color: rgba(255, 255, 255, 0.2);
    --fc-button-active-bg-color: rgba(99, 102, 241, 0.2);
    --fc-button-active-border-color: rgba(99, 102, 241, 0.4);
    --fc-event-bg-color: #6366f1;
    --fc-event-border-color: #6366f1;
    color: #f1f5f9;
}
.fc-theme-standard .fc-scrollgrid {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.fc-event {
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}
