.tygryski-calendar-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.tygryski-calendar-tabs button { min-height: 44px; padding: 9px 18px; border: 2px solid var(--orange, #ef7d00); border-radius: 999px; color: var(--orange-dark, #e15c11); background: #fff; font-weight: 800; cursor: pointer; }
.tygryski-calendar-tabs button[aria-selected="true"] { color: #fff; background: var(--orange, #ef7d00); }
.tygryski-month-panel { max-width: 920px; margin-inline: auto; }
.tygryski-month-nav { display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; gap: 12px; margin-bottom: 16px; }
.tygryski-month-nav h2 { margin: 0; text-align: center; text-transform: capitalize; }
.tygryski-month-nav button { width: 48px; height: 48px; border: 0; border-radius: 50%; color: #fff; background: var(--graphite, #26282a); font-size: 1.3rem; font-weight: 800; cursor: pointer; }
.tygryski-month-nav button:hover, .tygryski-month-nav button:focus-visible { background: var(--orange, #ef7d00); }
.tygryski-weekdays, .tygryski-month-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 7px; }
.tygryski-weekdays { margin-bottom: 7px; color: #766e64; font-size: .78rem; font-weight: 850; text-align: center; text-transform: uppercase; }
.tygryski-calendar-day, .tygryski-calendar-empty { position: relative; display: flex; min-height: 76px; align-items: flex-start; justify-content: space-between; padding: 9px; border: 1px solid #e7d8c1; border-radius: 12px; background: var(--paper, #fffdf7); }
.tygryski-calendar-empty { border-color: transparent; background: transparent; }
button.tygryski-calendar-day { color: var(--graphite, #26282a); font: inherit; text-align: left; cursor: pointer; }
.tygryski-calendar-day.has-events { border: 2px solid var(--orange, #ef7d00); background: var(--orange-soft, #fff0df); box-shadow: 0 5px 15px rgba(239, 125, 0, .13); }
.tygryski-calendar-day.has-events:hover, .tygryski-calendar-day.has-events:focus-visible, .tygryski-calendar-day.is-selected { color: #fff; background: var(--orange, #ef7d00); outline: none; }
.day-number { font-weight: 850; }
.event-marker { display: grid; min-width: 25px; height: 25px; place-items: center; border-radius: 50%; color: #fff; background: var(--orange, #ef7d00); font-size: .75rem; font-weight: 900; }
.tygryski-calendar-day:hover .event-marker, .tygryski-calendar-day:focus-visible .event-marker, .tygryski-calendar-day.is-selected .event-marker { color: var(--orange-dark, #e15c11); background: #fff; }
.tygryski-day-details { margin-top: 18px; padding: 22px; border: 1px solid #e7d8c1; border-left: 5px solid var(--orange, #ef7d00); border-radius: 14px; background: var(--paper, #fffdf7); }
.tygryski-day-details h3 { margin-bottom: 14px; text-transform: capitalize; }
.tygryski-day-details article { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid #eadbc6; }
.tygryski-day-details article:first-of-type { border-top: 0; }
.tygryski-day-details article span { display: block; color: #68645e; font-size: .88rem; }
@media (max-width: 620px) {
	.tygryski-weekdays, .tygryski-month-grid { gap: 3px; }
	.tygryski-weekdays { font-size: .66rem; }
	.tygryski-calendar-day, .tygryski-calendar-empty { min-height: 50px; padding: 5px; border-radius: 8px; }
	.event-marker { min-width: 18px; height: 18px; font-size: .62rem; }
	.tygryski-day-details article { align-items: flex-start; flex-direction: column; gap: 5px; }
}
