/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* Drawer animation */
#postDrawer {
    transition: transform 0.35s ease;
}

/* Variant modal */
#variantModalOverlay.show {
    display: flex !important;
}

/* Calendar styling (JS will inject classes) */
.calendar-day {
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}
.calendar-day:hover {
    background: rgba(139, 92, 246, 0.25);
}
.calendar-day.today {
    outline: 2px solid #a855f7;
}
.calendar-day.selected {
    background: rgba(139,92,246,0.5);
}

/* Post cards */
.post-card {
    border: 1px solid #334155;
    background: #1e293b;
}
.post-card:hover {
    border-color: #a855f7;
}
