/* ==========================================================================
   MultiPosts DASHBOARD — PROFESSIONAL DESIGN SYSTEM (CSS/STYLE.CSS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & PALETTES
   -------------------------------------------------------------------------- */
:root {
    /* DARK MODE PALETTE */
    --app-bg: #120b0d;
    --sidebar-bg: #181112;
    --card-bg: #1c1215;
    --card-bg-hover: #24171a;
    --inset-bg: #140d0f;
    --border-color: #2d1d21;
    --border-color-hover: #40262c;

    --text-heading: #ffffff;
    --text-body: #f3f4f6;
    --text-muted: #9e8b90;
    --text-placeholder: #6e5d62;

    --brand-coral: #f2555a;
    --brand-coral-hover: #e0454a;
    --brand-rose-bg: #2d171a;
    --brand-rose-border: #3d1f25;
    --brand-rose-text: #f2555a;

    --btn-neutral-bg: #221518;
    --btn-neutral-border: #301d22;
    --btn-neutral-text: #f3f4f6;
    --btn-neutral-hover: #2b1b1f;

    --badge-bg: #221518;
    --badge-border: #2d1d21;
    --badge-text: #9e8b90;

    --popover-bg: #181112;
    --popover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.4);

    --status-published-bg: rgba(6, 78, 59, 0.8);
    --status-published-border: rgba(6, 95, 70, 0.5);
    --status-published-text: #34d399;
}

html.light {
    /* LIGHT (DAY) MODE PALETTE — ALL TEXT COLOR MANDATED TO #64748b */
    --app-bg: #f8fafc;
    --sidebar-bg: #ffffff;
    --card-bg: #ffffff;
    --card-bg-hover: #f8fafc;
    --inset-bg: #f1f5f9;
    --border-color: #e2e8f0;
    --border-color-hover: #cbd5e1;

    --text-heading: #64748b;
    --text-body: #64748b;
    --text-muted: #64748b;
    --text-placeholder: #94a3b8;

    --brand-coral: #f2555a;
    --brand-coral-hover: #e0454a;
    --brand-rose-bg: #fff1f2;
    --brand-rose-border: #fecdd3;
    --brand-rose-text: #e11d48;

    --btn-neutral-bg: #ffffff;
    --btn-neutral-border: #cbd5e1;
    --btn-neutral-text: #64748b;
    --btn-neutral-hover: #f1f5f9;

    --badge-bg: #f1f5f9;
    --badge-border: #e2e8f0;
    --badge-text: #64748b;

    --popover-bg: #ffffff;
    --popover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

    --status-published-bg: #ecfdf5;
    --status-published-border: #a7f3d0;
    --status-published-text: #059669;
}

/* --------------------------------------------------------------------------
   2. BASE & TYPOGRAPHY STYLES
   -------------------------------------------------------------------------- */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--app-bg);
    color: var(--text-body);
    overflow-x: hidden;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.code-font {
    font-family: 'JetBrains Mono', monospace;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--sidebar-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* --------------------------------------------------------------------------
   3. SEMANTIC REUSABLE COMPONENT CLASSES
   -------------------------------------------------------------------------- */

/* Layout Shells */
.sidebar-panel {
    background-color: var(--sidebar-bg);
    border-color: var(--border-color);
}

.card-surface {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.2s ease-in-out;
}

.card-surface:hover {
    border-color: var(--border-color-hover);
}

.inset-surface {
    background-color: var(--inset-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
}

.popover-surface {
    background-color: var(--popover-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--popover-shadow);
    border-radius: 1rem;
}

/* Button Classes */
.btn-primary {
    background-color: var(--brand-coral) !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(242, 85, 90, 0.25);
}

.btn-primary:hover {
    background-color: var(--brand-coral-hover) !important;
}

.btn-secondary {
    background-color: var(--brand-rose-bg) !important;
    border: 1px solid var(--brand-rose-border) !important;
    color: var(--brand-rose-text) !important;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
    filter: brightness(1.05);
}

.btn-neutral {
    background-color: var(--btn-neutral-bg) !important;
    border: 1px solid var(--btn-neutral-border) !important;
    color: var(--btn-neutral-text) !important;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.2s ease-in-out;
}

.btn-neutral:hover {
    background-color: var(--btn-neutral-hover) !important;
}

/* Nav Item Classes */
.nav-item-active {
    background-color: var(--brand-rose-bg) !important;
    border: 1px solid var(--brand-rose-border) !important;
    color: var(--brand-rose-text) !important;
    font-weight: 600;
}

.nav-item-inactive {
    background-color: transparent !important;
    border: 1px solid transparent !important;
    color: var(--text-muted) !important;
}

.nav-item-inactive:hover {
    background-color: var(--btn-neutral-hover) !important;
    color: var(--text-heading) !important;
}

/* Badge & Tag Classes */
.badge-chip {
    background-color: var(--badge-bg) !important;
    border: 1px solid var(--badge-border) !important;
    color: var(--badge-text) !important;
    border-radius: 0.375rem;
}

.badge-published {
    background-color: var(--status-published-bg) !important;
    border: 1px solid var(--status-published-border) !important;
    color: var(--status-published-text) !important;
}

/* Form Inputs */
.input-field {
    background-color: var(--inset-bg);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-field::placeholder {
    color: var(--text-placeholder);
}

.input-field:focus {
    outline: none;
    border-color: var(--brand-coral) !important;
    box-shadow: 0 0 0 3px rgba(242, 85, 90, 0.15);
}

/* --------------------------------------------------------------------------
   4. GLOBAL LIGHT MODE COMPREHENSIVE OVERRIDES
   -------------------------------------------------------------------------- */
html.light body,
html.light h1,
html.light h2,
html.light h3,
html.light h4,
html.light h5,
html.light h6,
html.light p,
html.light span:not(.btn-primary *):not(.bg-\[\#f2555a\] *),
html.light div,
html.light label,
html.light button:not(.btn-primary):not(.bg-\[\#f2555a\]):not(.bg-\[\#e0454a\]),
html.light a,
html.light input,
html.light select,
html.light textarea,
html.light th,
html.light td,
html.light i:not(.text-red-500):not(.text-blue-400):not(.text-pink-500):not(.text-cyan-400):not(.text-\[\#f2555a\]):not(.text-emerald-400):not(.text-emerald-500):not(.btn-primary *):not(.bg-\[\#f2555a\] *) {
    color: #64748b !important;
}

/* Primary Coral Buttons Always Crisp White Text */
html.light .btn-primary,
html.light .bg-\[\#f2555a\],
html.light .bg-\[\#e0454a\],
html.light .btn-primary *,
html.light .bg-\[\#f2555a\] *,
html.light .bg-\[\#e0454a\] * {
    color: #ffffff !important;
    background-color: #f2555a !important;
}

html.light .bg-\[\#e0454a\]:hover,
html.light .btn-primary:hover {
    background-color: #e0454a !important;
}

html.light body {
    background-color: #f8fafc !important;
}

html.light aside {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 1px 0 3px 0 rgba(0, 0, 0, 0.02);
}

html.light main {
    background-color: #f8fafc !important;
}

/* Comprehensive Class Name Overrides for Light Mode */
html.light .bg-\[\#181112\],
html.light .bg-\[\#1c1215\],
html.light .bg-\[\#221518\],
html.light .bg-\[\#2b1b1f\],
html.light .bg-\[\#120b0d\],
html.light .bg-\[\#2a1a1e\] {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
}

/* Secondary Action Buttons & Pills in Light Mode */
html.light .bg-\[\#2a171b\],
html.light .bg-\[\#2d171a\],
html.light .bg-\[\#3d2127\],
html.light .bg-\[\#3d1d23\],
html.light .bg-\[\#8c3539\],
html.light .btn-secondary,
html.light .nav-item-active {
    background-color: #fff1f2 !important;
    border-color: #fecdd3 !important;
    color: #e11d48 !important;
}

html.light .bg-\[\#2a171b\]:hover,
html.light .bg-\[\#2d171a\]:hover,
html.light .bg-\[\#3d2127\]:hover,
html.light .bg-\[\#8c3539\]:hover {
    background-color: #ffe4e6 !important;
    color: #be123c !important;
}

/* Badges & Chips in Light Mode: strictly #64748b */
html.light .badge-chip,
html.light .bg-\[\#2a1a1e\],
html.light .bg-\[\#2d1d21\] {
    background-color: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    color: #64748b !important;
}

/* Specific Utility Text Class Overrides in Light Mode */
html.light .text-white:not(.btn-primary):not(.btn-primary *):not(.bg-\[\#f2555a\]):not(.bg-\[\#f2555a\] *) {
    color: #64748b !important;
}

html.light .text-slate-100,
html.light .text-slate-200,
html.light .text-slate-300,
html.light .text-slate-400,
html.light .text-slate-500,
html.light .text-\[\#9e8b90\] {
    color: #64748b !important;
}

html.light .placeholder-\[\#6e5d62\]::placeholder {
    color: #94a3b8 !important;
}

/* Borders & Table Dividers in Light Mode (Soft Light Border #f1f5f9 / #e2e8f0) */
html.light .border-\[\#2d1d21\],
html.light .border-\[\#301d22\],
html.light .border-\[\#332025\],
html.light .border-\[\#3b1f25\],
html.light .border-\[\#3d1f25\],
html.light .border-\[\#3d272c\] {
    border-color: #e2e8f0 !important;
}

html.light .divide-\[\#2d1d21\]> :not([hidden])~ :not([hidden]),
html.light .divide-y> :not([hidden])~ :not([hidden]),
html.light table tr,
html.light table td,
html.light table th {
    border-color: #f1f5f9 !important;
}

/* Form Elements */
html.light input,
html.light select,
html.light textarea {
    background-color: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #64748b !important;
}

html.light input:focus,
html.light select:focus,
html.light textarea:focus {
    border-color: #f2555a !important;
    box-shadow: 0 0 0 3px rgba(242, 85, 90, 0.15) !important;
}

/* Tables Header & Hover */
html.light table th {
    background-color: #f8fafc !important;
    color: #64748b !important;
    border-color: #e2e8f0 !important;
}

html.light table tr:hover {
    background-color: #f8fafc !important;
}

/* Pre / Code Blocks */
html.light pre {
    background-color: #0f172a !important;
    color: #34d399 !important;
    border-color: #1e293b !important;
}

/* Popover Cards */
html.light #schedulePopover,
html.light #postToDropdown,
html.light #userProfileDropdown,
html.light #integrationModal>div,
html.light #postDetailsModal>div {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04) !important;
}

/* --------------------------------------------------------------------------
   5. UNIFIED SOCIAL INBOX (MESSAGES) & SELECTION STYLES
   -------------------------------------------------------------------------- */
.msg-thread-item {
    transition: all 0.2s ease-in-out;
    border-left: 3px solid transparent;
}

.msg-thread-item:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.msg-thread-item.active,
.msg-thread-item.is-selected,
.msg-thread-item.bg-\[\#23171a\],
.msg-thread-item.bg-slate-500\/10 {
    background-color: #23171a !important;
    border-left: 3px solid #f2555a !important;
}

/* Light / Day Mode Overrides for Message Inbox */
html.light .msg-thread-item {
    background-color: #ffffff;
    border-color: #f1f5f9 !important;
}

html.light .msg-thread-item:hover {
    background-color: #f8fafc !important;
}

/* Selected Message Thread in Light / Day Mode - Fresh Soft Tint */
html.light .msg-thread-item.active,
html.light .msg-thread-item.is-selected,
html.light .msg-thread-item.bg-\[\#23171a\],
html.light .msg-thread-item.bg-slate-500\/10,
html.light .bg-\[\#23171a\] {
    background-color: #fff1f2 !important;
    border-left: 3px solid #f2555a !important;
}

html.light .hover\:bg-\[\#23171a\]:hover {
    background-color: #ffe4e6 !important;
}

html.light .msg-thread-item.active .font-bold,
html.light .msg-thread-item.is-selected .font-bold,
html.light .msg-thread-item.bg-\[\#23171a\] .font-bold,
html.light .msg-thread-item.bg-slate-500\/10 .font-bold,
html.light .msg-thread-item.active .text-white,
html.light .msg-thread-item.is-selected .text-white,
html.light .msg-thread-item.bg-\[\#23171a\] .text-white,
html.light .msg-thread-item.bg-slate-500\/10 .text-white {
    color: #0f172a !important;
}

html.light .msg-thread-item.active p,
html.light .msg-thread-item.is-selected p,
html.light .msg-thread-item.bg-\[\#23171a\] p,
html.light .msg-thread-item.bg-slate-500\/10 p {
    color: #475569 !important;
}

html.light .msg-thread-item.active .text-\[\#9e8b90\],
html.light .msg-thread-item.is-selected .text-\[\#9e8b90\],
html.light .msg-thread-item.bg-\[\#23171a\] .text-\[\#9e8b90\],
html.light .msg-thread-item.bg-slate-500\/10 .text-\[\#9e8b90\] {
    color: #64748b !important;
}

/* Chat Messages Bubble Light Mode Readability */
html.light #chatMessagesStream .inset-surface,
html.light #chatMessagesStream .bg-\[\#1c1215\] {
    background-color: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    color: #0f172a !important;
}

/* --------------------------------------------------------------------------
   INBOX / MESSAGES — SUPPLEMENTAL STYLES
   -------------------------------------------------------------------------- */

/* Hide scrollbar utility */
.scrollbar-none {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.scrollbar-none::-webkit-scrollbar {
    display: none;
}

/* Smooth scroll for chat stream */
#chatMessagesStream {
    scroll-behavior: smooth;
}

/* Thread card hover transition */
.msg-thread-item {
    transition: background-color 0.15s ease;
}

/* Unread count badge pulse animation */
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.inbox-unread-pulse {
    animation: badgePulse 2s ease-in-out infinite;
}

/* Auto-grow textarea clean styling */
#msgReplyInput {
    field-sizing: content;
    overflow-y: auto;
}

/* Attachment preview bar custom scrollbar */
#msgAttachmentPreviewBar {
    scrollbar-width: thin;
    scrollbar-color: #3b2127 transparent;
}
#msgAttachmentPreviewBar::-webkit-scrollbar {
    height: 4px;
}
#msgAttachmentPreviewBar::-webkit-scrollbar-track {
    background: transparent;
}
#msgAttachmentPreviewBar::-webkit-scrollbar-thumb {
    background-color: #3b2127;
    border-radius: 2px;
}

/* Thread list custom scrollbar */
#msgThreadsContainer {
    scrollbar-width: thin;
    scrollbar-color: #4a2d34 #181112;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
#msgThreadsContainer::-webkit-scrollbar {
    width: 6px;
}
#msgThreadsContainer::-webkit-scrollbar-track {
    background: #181112;
}
#msgThreadsContainer::-webkit-scrollbar-thumb {
    background-color: #3b2127;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
#msgThreadsContainer::-webkit-scrollbar-thumb:hover {
    background-color: #f2555a;
}

/* Chat stream custom scrollbar */
#chatMessagesStream {
    scrollbar-width: thin;
    scrollbar-color: #4a2d34 #120b0d;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
#chatMessagesStream::-webkit-scrollbar {
    width: 6px;
}
#chatMessagesStream::-webkit-scrollbar-track {
    background: #120b0d;
}
#chatMessagesStream::-webkit-scrollbar-thumb {
    background-color: #3b2127;
    border-radius: 9999px;
}
#chatMessagesStream::-webkit-scrollbar-thumb:hover {
    background-color: #f2555a;
}

/* Active thread card accent left border */
.msg-thread-item.is-selected::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background: #f2555a;
    border-radius: 0 2px 2px 0;
}

/* Light mode inbox overrides */
html.light #msgThreadsContainer {
    background-color: #ffffff;
}
html.light .msg-thread-item:hover {
    background-color: #f8fafc !important;
}
html.light .msg-thread-item.is-selected {
    background-color: #fef2f2 !important;
}

/* ==========================================================================
   COLLAPSIBLE SIDEBAR MENU STYLES
   ========================================================================== */
#appSidebar {
    transition: width 0.26s cubic-bezier(0.4, 0, 0.2, 1), padding 0.26s ease;
}

#appSidebar.sidebar-collapsed {
    width: 4.8rem !important; /* 76px */
}

#appSidebar.sidebar-collapsed .sidebar-text,
#appSidebar.sidebar-collapsed .sidebar-collapsed-hide {
    display: none !important;
}

#appSidebar.sidebar-collapsed .justify-between {
    justify-content: center;
}

#appSidebar.sidebar-collapsed #sidebarCollapseBtn {
    margin: 0 auto;
}

#appSidebar.sidebar-collapsed #userProfileBtn {
    padding: 0.45rem;
    justify-content: center;
}

#appSidebar.sidebar-collapsed nav .nav-btn,
#appSidebar.sidebar-collapsed #themeToggleBtn {
    padding: 0.65rem 0;
    justify-content: center;
    position: relative;
}

#appSidebar.sidebar-collapsed nav .nav-btn i,
#appSidebar.sidebar-collapsed #themeToggleBtn i {
    margin: 0;
    font-size: 1rem;
    width: auto;
}

#appSidebar.sidebar-collapsed #sidebarMessagesBadge {
    position: absolute;
    top: 4px;
    right: 14px;
    padding: 0.12rem 0.35rem;
    font-size: 8px;
}

#appSidebar.sidebar-collapsed #userProfileDropdown {
    left: 100%;
    top: 0;
    margin-left: 0.75rem;
    width: 220px;
}

/* ==========================================================================
   8. RESPONSIVE MOBILE NAVIGATION (PINNED MENU HEADER)
   ========================================================================== */
@media (max-width: 767.98px) {
    /* Hide the vertical aside sidebar completely on mobile */
    aside#appSidebar {
        display: none !important;
    }

    /* Override body layout flow for mobile screen viewports */
    body {
        flex-direction: column !important;
        overflow: hidden !important;
    }

    /* Adjust main content container padding to fit pinned top header bar */
    #main-content-container {
        padding: 16px !important;
        padding-top: 72px !important; /* Space for mobile pinned bar at the top */
        flex: 1 !important;
        overflow-y: auto !important;
    }
}

/* ==========================================================================
   9. UNIVERSAL GLOBAL PAGE PRELOADER (FLASH SCREEN ON PAGE LOAD / REFRESH)
   ========================================================================== */
.global-page-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: radial-gradient(circle at 50% 30%, rgba(242, 85, 90, 0.18) 0%, rgba(18, 11, 13, 0.98) 70%), #120b0d;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.global-page-preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.preloader-logo-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    border: 2px solid rgba(242, 85, 90, 0.4);
    animation: preloader-ring-pulse 1.8s ease-in-out infinite;
}

.preloader-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    background: #1c1215;
    border: 1px solid rgba(242, 85, 90, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(242, 85, 90, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    animation: preloader-logo-bounce 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preloader-brand {
    font-family: 'Inter', sans-serif;
}

.preloader-bar-wrap {
    width: 140px;
    height: 3px;
    background: rgba(45, 29, 33, 0.8);
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #f2555a, #ff8c90);
    border-radius: 9999px;
    animation: preloader-bar-slide 1.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.preloader-text {
    font-size: 11px;
    font-weight: 500;
    color: #9e8b90;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

@keyframes preloader-ring-pulse {
    0%, 100% { transform: scale(0.95); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes preloader-logo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes preloader-bar-slide {
    0% { left: -40%; width: 30%; }
    50% { left: 30%; width: 50%; }
    100% { left: 100%; width: 30%; }
}

/* --------------------------------------------------------------------------
   14. CONTENT CALENDAR & DRAG-AND-DROP VISUAL SYSTEM
   -------------------------------------------------------------------------- */
.calendar-day-cell {
    transition: background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.calendar-day-cell.drag-over-active {
    background-color: rgba(242, 85, 90, 0.12) !important;
    box-shadow: inset 0 0 0 2px #f2555a !important;
}

.calendar-post-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.calendar-post-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.4);
}

.calendar-post-card[draggable="true"] {
    cursor: grab;
}

.calendar-post-card[draggable="true"]:active {
    cursor: grabbing;
    transform: scale(0.98);
}

html.light .calendar-day-cell {
    background-color: #ffffff;
    border-color: #e2e8f0;
}

html.light .calendar-day-cell:hover {
    background-color: #f8fafc;
}

html.light .calendar-day-cell.bg-\[\#140b0e\]\/50 {
    background-color: #f1f5f9 !important;
    opacity: 0.6;
}

html.light .calendar-month-table .border-b {
    background-color: #f8fafc;
    border-color: #e2e8f0;
}

html.light .calendar-post-card.bg-\[\#141b29\] {
    background-color: #eff6ff !important;
    border-color: #bfdbfe !important;
}

html.light .calendar-post-card.bg-\[\#0f1d18\] {
    background-color: #f0fdf4 !important;
    border-color: #bbf7d0 !important;
}

html.light .calendar-post-card .text-white {
    color: #1e293b !important;
}

html.light .calendar-post-card .text-slate-200 {
    color: #475569 !important;
}