    .bsnp-side-title { font-family: var(--font-ui); font-size: 22px; font-weight: 400; color: var(--accent-color); border-bottom: 3px double var(--border-color); padding-bottom: 8px; margin-bottom: 20px; padding-top: 10px; }
    .bsnp-calendar-box { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 30px; width: 100%; }
    .bsnp-cal-header { background: #f8f8f8; padding: 5px 15px 5px 15px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
    .bsnp-cal-header .selected-date { font-family: var(--font-ui); font-size: 18px; font-weight: 400; color: #1a1a1a; }
    .bsnp-cal-header i { color: #3b82f6; font-size: 20px; }
    .bsnp-cal-selectors { padding: 7px 10px; display: flex; gap: 8px; background: #f0f0f0; border-bottom: 1px solid #eee; }
    .bsnp-cal-selectors select { flex: 1; padding: 5px 8px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-ui); font-size: 16px; cursor: pointer; outline: none; background: #fff; }

    /* স্ক্রিনশটের মতো bordered grid */
    .bsnp-cal-table { width: 100%; border-collapse: collapse; table-layout: fixed; background: #fff; }
    .bsnp-cal-table thead tr { border-bottom: 2px solid #ddd; }
    .bsnp-cal-table th { background: #fff; padding: 8px 0; font-family: var(--font-ui); font-size: 13px; color: #555; font-weight: 600; text-align: center; border-right: 1px solid #eee; }
    .bsnp-cal-table th:last-child { border-right: none; }
    .bsnp-cal-table td { text-align: center; padding: 0; border: 1px solid #eee; position: relative; height: 40px; }
    .bsnp-cal-table tbody tr:last-child td { border-bottom: none; }

    .bsnp-cal-day { display: flex; width: 100%; height: 40px; align-items: center; justify-content: center; border-radius: 0; font-family: var(--font-ui); font-size: 16px; color: #333; text-decoration: none; transition: 0.2s; font-weight: 400; position: relative; z-index: 1; }
    .bsnp-cal-day.has-news::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--accent-color); border-radius: 50%; }
    .bsnp-cal-day.selected { background: var(--accent-color); color: #fff !important; }
    .bsnp-cal-day.is-today { background: #3b82f6; color: #fff !important; border: none; }
    .bsnp-cal-day:hover:not(.empty) { background: #000000; color: #fff; }
    .bsnp-cal-day:hover:not(.empty).has-news::after { background: #fff; }
    .bsnp-cal-day.empty { cursor: default; color: transparent; width: 32px; height: 32px; display: inline-flex; }

    /* Loading state */
    .bsnp-cal-loading { opacity: 0.4; pointer-events: none; transition: opacity 0.2s; }

    @media (max-width: 768px) { .bsnp-calendar-box { margin: 0 auto 30px; max-width: 100%; } .bsnp-sidebar-block { padding: 0 var(--mobile-padding, 15px); } }

    [data-theme="dark"] .bsnp-calendar-box { background: #112240; border-color: #1e3a5f; }
    [data-theme="dark"] .bsnp-cal-header { background: #0A1628; color: #fff; border-color: #1e3a5f; }
    [data-theme="dark"] .bsnp-cal-header .selected-date { color: #fff; }
    [data-theme="dark"] .bsnp-cal-selectors { background: #0A1628; border-color: #1e3a5f; }
    [data-theme="dark"] .bsnp-cal-selectors select { background: #1e3a5f; color: #ffffff; border-color: #2d5080; }
    [data-theme="dark"] .bsnp-cal-selectors select option { background: #1e3a5f; color: #ffffff; }
    [data-theme="dark"] .bsnp-cal-table { background: #112240; }
    [data-theme="dark"] .bsnp-cal-table th { background: #112240; color: #aaa; border-color: #1e3a5f; }
    [data-theme="dark"] .bsnp-cal-table thead tr { border-color: #1e3a5f; }
    [data-theme="dark"] .bsnp-cal-table td { border-color: #1e3a5f; }
    [data-theme="dark"] .bsnp-cal-day { color: #fff; }
    [data-theme="dark"] .bsnp-cal-day.is-today { background: #1e3a5f; color: #fff !important; border: none; }
    [data-theme="dark"] .bsnp-cal-day:hover:not(.empty) { background: #1e3a5f; color: #fff; width: 100%; height: 40px; }