.major-cal-shortcode-container { background: #fff; padding: 15px; border: 1px solid #ddd; border-radius: 4px; }
.cal-shortcode-title { margin: 0 0 15px 0; padding-bottom: 10px; border-bottom: 2px solid #2271b1; }
.cal-nav-controls { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; flex-wrap: wrap; }
.cal-current-month { font-weight: bold; font-size: 1.1em; margin-left: 10px; }
.cal-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding: 10px; background: #f0f0f1; border-radius: 4px; flex-wrap: wrap; gap: 10px; }
.cal-tag-filters { display: flex; gap: 5px; flex-wrap: wrap; }
.cal-tag-pill { display: inline-block; padding: 2px 8px; border: 1px solid #ccc; border-radius: 10px; font-size: 11px; }
.cal-tag-pill.active { border-color: transparent; font-weight: bold; }

.cal-agenda-box { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
@media (max-width: 600px) { .cal-agenda-box { grid-template-columns: 1fr; } }
.cal-agenda-col h4 { margin: 0 0 10px 0; padding-bottom: 5px; border-bottom: 2px solid #eee; }
.cal-agenda-col.today h4 { border-color: #d63638; }
.cal-agenda-col.tomorrow h4 { border-color: #dba617; }
.cal-agenda-item { padding: 5px 0; }

.cal-grid { width: 100%; border-collapse: collapse; table-layout: fixed; }
.cal-grid th { background: #f0f0f1; padding: 8px; border: 1px solid #ddd; text-align: center; font-size: 12px; }
.cal-day { height: 70px; border: 1px solid #ddd; vertical-align: top; cursor: pointer; transition: background 0.2s; }
.cal-day:hover { background: #f9f9f9; }
.cal-today { background: #ffffe0 !important; border: 2px solid #dba617; }
.cal-day-num { padding: 3px 5px; font-weight: bold; text-align: right; font-size: 12px; }
.cal-badge { text-align: center; color: #2271b1; font-size: 11px; }
.cal-dots { text-align: center; margin-top: 3px; }
.cal-dots span { display: inline-block; width: 5px; height: 5px; border-radius: 50%; margin: 0 1px; }
.cal-empty { background: #f9f9f9; }
.cal-has-events { cursor: pointer; }

.cal-list-view { }
.cal-list-header { background: #f0f0f1; padding: 8px; margin: 15px 0 5px 0; border-bottom: 1px solid #ccc; }
.cal-list-item { display: flex; align-items: center; padding: 8px; border-bottom: 1px solid #eee; gap: 10px; }
.cal-tag-badge { color: #fff; padding: 2px 6px; border-radius: 3px; font-size: 10px; text-transform: uppercase; }
.cal-list-content { flex-grow: 1; }
.cal-empty-state { padding: 20px; text-align: center; color: #999; }

.cal-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 99999; display: flex; align-items: center; justify-content: center; }
.cal-modal-content { background: #fff; width: 90%; max-width: 450px; max-height: 70vh; border-radius: 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); display: flex; flex-direction: column; }
.cal-modal-header { padding: 12px 15px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: #f6f7f7; }
.cal-modal-header h3 { margin: 0; font-size: 16px; }
.cal-modal-body { padding: 15px; overflow-y: auto; flex-grow: 1; }
.cal-modal-footer { padding: 10px; background: #f6f7f7; border-top: 1px solid #eee; }
.cal-close { font-size: 20px; cursor: pointer; color: #666; }
.cal-close:hover { color: #000; }

.cal-preview-container { border: 2px dashed #2271b1; padding: 15px; margin: 10px 0; position: relative; }
