:root {
  --page-bg: #232323;
  --shell: #1a1f26;
  --panel: #242a33;
  --panel-2: #1d232c;
  --line: #2f3642;
  --line-soft: #333b48;
  --text: #edf2f6;
  --muted: #9da7b3;
  --accent: #e67e22;
  --accent-2: #f39c34;
  --ok: #f08b2c;
  --crowd: #d8741b;
  --weekend: #ffb36b;
  --shadow: 0 14px 32px rgba(8, 12, 18, 0.42);
}

html,
body {
  height: 100%;
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Manrope', 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(243, 156, 52, 0.08), transparent 34%),
    radial-gradient(circle at 86% 88%, rgba(230, 126, 34, 0.06), transparent 36%),
    var(--page-bg);
}

body.is-dragging-calendar {
  user-select: none;
  cursor: crosshair;
  touch-action: none;
}

.app {
  width: 100%;
  max-width: none;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  border-radius: 0;
  background: linear-gradient(180deg, #1b2027, #191e25);
  border: none;
  box-shadow: none;
  overflow-x: clip;
  position: relative;
  isolation: isolate;
}

.app.in-room {
  gap: 8px;
}

.app.on-auth {
  background:
    radial-gradient(1000px 520px at 18% 14%, rgba(243, 122, 105, 0.24), transparent 56%),
    radial-gradient(900px 460px at 82% 16%, rgba(95, 152, 228, 0.2), transparent 54%),
    radial-gradient(760px 380px at 50% 84%, rgba(255, 255, 255, 0.05), transparent 68%),
    linear-gradient(180deg, #161c25 0%, #121821 42%, #0f151f 100%);
}

.app.on-auth::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 36px
    );
  opacity: 0.35;
  z-index: 0;
}

.app.on-auth > * {
  position: relative;
  z-index: 1;
}

.hero,
.controls,
.admin-controls,
.calendar-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 10px 16px;
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.logo-top {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.logo-top:hover {
  filter: brightness(1.04);
}

.logo-image {
  display: none;
  max-width: min(760px, 100%);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #f4f8fb;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.42);
}

.logo-top .logo-image,
.logo-top .logo-text {
  flex: 1;
  min-width: 0;
}

.logo-subtitle {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
}

.logo-alpha {
  margin: 0;
  flex: none;
  color: #8f99a6;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.65;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  min-width: 0;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(82, 94, 115, 0.45);
  border-radius: 999px;
  background: rgba(24, 31, 44, 0.7);
}

.locale-btn {
  min-width: 42px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #aeb8c4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.locale-btn-active {
  color: #fff5e8;
  background: linear-gradient(180deg, rgba(243, 156, 52, 0.3), rgba(230, 126, 34, 0.18));
  box-shadow: inset 0 -2px 0 rgba(243, 156, 52, 0.7);
}

.bottom-global-actions {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  padding: 0;
}

.app.on-dashboard .bottom-global-actions {
  display: flex;
}

.bottom-global-button {
  border: 1px solid rgba(115, 134, 164, 0.42);
  padding: 0;
  background: rgba(29, 38, 53, 0.65);
  cursor: pointer;
}

.bottom-global-button:hover {
  color: #eaf0f6;
}

.controls,
.admin-controls,
.calendar-section {
  padding: 14px;
}

.controls {
  display: grid;
  gap: 10px;
}

.auth-panel {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  align-self: stretch;
  justify-items: center;
  gap: 32px;
  align-content: center;
  padding-top: clamp(0px, 2vh, 18px);
  transform: translateY(-24px);
}

#authView.controls {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.auth-form {
  display: grid;
  gap: 10px;
  width: min(560px, 100%);
}

.auth-form .picker-title {
  text-align: center;
}

.auth-hero {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  max-width: 740px;
}

.auth-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-title {
  margin: 0;
  font-size: clamp(1.85rem, 5.6vw, 3.35rem);
  line-height: 1.08;
  max-width: 20ch;
}

.auth-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  max-width: 62ch;
}

.auth-divider {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.telegram-auth-wrap {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.telegram-widget-mount {
  min-height: 44px;
}

.auth-row {
  justify-content: center;
}

.auth-row input {
  min-width: 220px;
}

.picker-title {
  margin: 0;
  font-weight: 700;
  color: #d9e2ea;
}

.user-picker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.user-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}

.user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: auto;
  max-width: 100%;
  min-height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: #e8edf2;
  background: var(--panel-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}

.user-admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid #ff4d4f;
  background: rgba(255, 77, 79, 0.2);
  color: #ffd9d9;
  box-shadow: 0 0 10px rgba(255, 77, 79, 0.28);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.user-no-vote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid #a07a2c;
  background: rgba(243, 156, 52, 0.18);
  color: #ffdba8;
  box-shadow: 0 0 10px rgba(243, 156, 52, 0.2);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.user-btn:hover {
  transform: translateY(-1px);
  border-color: #46505f;
}

.user-btn.selected {
  border-color: #d47924;
  color: #2b1602;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow:
    0 0 0 2px rgba(243, 193, 132, 0.3),
    0 10px 20px rgba(230, 126, 34, 0.3);
}

.user-btn.selected .user-admin-badge {
  border-color: rgba(15, 20, 27, 0.3);
  background: rgba(15, 20, 27, 0.22);
}

.active-user {
  margin: 0;
  color: var(--muted);
}

.room-users {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
}

.room-users .picker-title {
  margin: 0;
}

#roomParticipantStats {
  white-space: pre-line;
}

.room-users .user-picker {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

.stats {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: var(--panel-2);
  min-width: 300px;
  margin-left: auto;
}

.stats-title {
  margin: 0;
  font-weight: 700;
  color: #e3e9ee;
}

.best-day-text {
  margin: 0;
  color: #ffd6a8;
  font-weight: 700;
}

.admin-controls {
  display: grid;
  gap: 8px;
}

.admin-title {
  margin: 0;
  font-weight: 700;
  color: #ffd1a3;
}

.admin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-screen {
  height: 100%;
  min-height: 0;
  display: grid;
}

.dashboard-panel {
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(82, 94, 115, 0.5);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(243, 156, 52, 0.1), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(105, 132, 214, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(20, 26, 38, 0.96), rgba(17, 22, 34, 0.98));
  box-shadow: 0 22px 44px rgba(7, 11, 18, 0.4);
  padding: 10px 18px 104px;
  overflow: auto;
  position: relative;
}

.icon-action {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(115, 134, 164, 0.42);
  background: rgba(29, 38, 53, 0.65);
  color: #eaf0f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-tabs {
  margin: 6px auto 0;
  width: min(100%, 420px);
  padding: 5px;
  border-radius: 999px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  background: rgba(31, 40, 57, 0.72);
  border: 1px solid rgba(78, 91, 113, 0.55);
}

.dashboard-tab-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 5px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(243, 156, 52, 0.38), rgba(230, 126, 34, 0.2));
  box-shadow:
    inset 0 -3px 0 var(--accent-2),
    0 8px 18px rgba(230, 126, 34, 0.16);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  pointer-events: none;
}

@media (max-width: 980px) {
  .dashboard-tab-indicator {
    display: none;
  }

  .dashboard-tab {
    transition: none;
  }

  .dashboard-tab.dashboard-tab-active {
    color: #fff6eb;
    background: linear-gradient(180deg, rgba(243, 156, 52, 0.25), rgba(230, 126, 34, 0.12));
    box-shadow:
      inset 0 -3px 0 var(--accent-2),
      0 8px 18px rgba(230, 126, 34, 0.16);
  }
}

.dashboard-tab {
  min-height: 48px;
  border: none;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  background: transparent;
  color: #98a5b8;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.22s ease;
}

.dashboard-tab.dashboard-tab-active {
  color: #fff6eb;
}

.dashboard-whoami {
  margin: 20px 0 0;
  color: #d9e1ea;
  font-weight: 700;
  font-size: 1rem;
}

.dashboard-section {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.dashboard-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-section-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #f3f6f9;
}

.dashboard-cards {
  display: grid;
  gap: 14px;
}

.meeting-card,
.dashboard-empty-card {
  width: 100%;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(89, 103, 130, 0.46);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(28, 34, 46, 0.96), rgba(22, 27, 39, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 28px rgba(7, 11, 18, 0.26);
}

.meeting-card {
  display: grid;
  gap: 12px;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.meeting-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 156, 184, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 32px rgba(7, 11, 18, 0.32);
}

.meeting-card-has-full-match {
  border-color: rgba(74, 179, 103, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(74, 179, 103, 0.18),
    0 16px 28px rgba(7, 11, 18, 0.26);
}

.meeting-card-has-full-match:hover {
  border-color: rgba(92, 201, 121, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(92, 201, 121, 0.26),
    0 20px 32px rgba(7, 11, 18, 0.32);
}

.meeting-card-badge {
  display: inline-flex;
  width: fit-content;
  align-self: start;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.meeting-card-badge-owner {
  color: #2a1503;
  background: linear-gradient(180deg, #ffc071, #ef892d);
}

.meeting-card-badge-invite {
  color: #dae6ff;
  background: rgba(107, 141, 235, 0.24);
  border: 1px solid rgba(132, 162, 245, 0.32);
}

.meeting-card-title {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fbfcfd;
}

.meeting-card-meta {
  color: #aeb8c6;
  line-height: 1.45;
  min-height: 2.9em;
}

.meeting-card-consensus {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.meeting-card-consensus-full {
  color: #8ce6a4;
  background: rgba(57, 126, 77, 0.18);
  border: 1px solid rgba(74, 179, 103, 0.32);
}

.meeting-card-consensus-empty {
  color: #cfd8e5;
  background: rgba(88, 102, 126, 0.2);
  border: 1px solid rgba(104, 120, 145, 0.26);
}

.meeting-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(96, 109, 131, 0.36);
}

.meeting-card-footer-label {
  color: #ffc987;
  font-weight: 700;
}

.meeting-card-arrow {
  color: #dfe7f2;
  font-size: 1.7rem;
  line-height: 1;
}

.dashboard-empty-card {
  color: #95a2b5;
  text-align: center;
  border-style: dashed;
}

.dashboard-fab {
  position: sticky;
  bottom: 0;
  left: auto;
  right: auto;
  width: fit-content;
  max-width: 100%;
  margin: 24px auto 0;
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255, 194, 118, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff6ec;
  background: linear-gradient(180deg, #f9a545, #f18622);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 8px rgba(26, 33, 48, 0.34),
    0 14px 22px rgba(241, 134, 34, 0.18);
  z-index: 2;
}

.dashboard-fab-plus {
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;
  color: #fff2e2;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 10, 16, 0.72);
  backdrop-filter: blur(12px);
}

.modal-card {
  width: min(100%, 520px);
  border-radius: 24px;
  border: 1px solid rgba(88, 102, 128, 0.5);
  background: linear-gradient(180deg, #1b2230, #161c28);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.36);
  padding: 20px;
  display: grid;
  gap: 14px;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.modal-copy {
  margin: 0;
  color: #aab4c2;
  line-height: 1.45;
}

.modal-card input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #eef1f4;
  background: rgba(22, 29, 41, 0.95);
}

.modal-card input:focus {
  outline: 2px solid rgba(230, 126, 34, 0.45);
  outline-offset: 1px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-secondary {
  color: #d5dee8;
}

.dashboard-head,
.room-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.workspace {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 12px;
}

#roomView.workspace {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(220px, 280px);
}

.workspace-left,
.workspace-main,
.workspace-right {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.workspace-left {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 12px;
}

.workspace-top {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding-right: 2px;
}

.workspace-main {
  min-height: 0;
  overflow: auto;
  padding: 12px;
}

.workspace-right {
  min-height: 0;
  overflow: auto;
  padding: 12px;
}

.workspace-empty {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.room-sidebar-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
}

.room-sidebar-head::after {
  content: '';
  width: 44px;
  height: 44px;
}

.room-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  text-align: center;
}

.room-title-wrap h2 {
  margin: 0;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.room-title-wrap h2.room-title-editable {
  cursor: text;
}

.room-title-hint {
  margin: 0;
  color: #9eaaba;
  font-size: 0.72rem;
  line-height: 1.2;
}

.room-title-input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(230, 126, 34, 0.7);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  color: #f6f8fb;
  background: #1b222d;
  outline: none;
  box-shadow: 0 0 0 1px rgba(230, 126, 34, 0.18);
}

.room-title-input:focus {
  box-shadow:
    0 0 0 1px rgba(230, 126, 34, 0.3),
    0 0 0 4px rgba(230, 126, 34, 0.14);
}

.room-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.room-actions-bottom {
  margin-top: 12px;
  justify-content: flex-start;
}

.room-actions-bottom #deleteRoomButton {
  margin-left: auto;
}

.mobile-room-delete-slot {
  display: none;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(230, 126, 34, 0.55);
  background: rgba(230, 126, 34, 0.16);
  color: #ffd29e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.rooms-list {
  display: grid;
  gap: 8px;
}

.rooms-grid {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.workspace-left .rooms-grid {
  grid-template-columns: 1fr;
}

.rooms-section {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.room-description-section {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 10px;
  background: var(--panel-2);
}

.room-description-view {
  margin: 0;
  min-height: 96px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 9px 10px;
  color: var(--muted);
  background: #1c232c;
  line-height: 1.35;
  white-space: pre-wrap;
  word-break: break-word;
}

.room-description-input {
  width: 100%;
  min-height: 96px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 9px 10px;
  font: inherit;
  color: var(--text);
  background: #1a2028;
  resize: vertical;
  line-height: 1.35;
}

.room-description-input::placeholder {
  color: var(--muted);
}

.room-description-input:focus {
  outline: 2px solid rgba(230, 126, 34, 0.45);
  outline-offset: 1px;
}

.room-description-input[readonly] {
  cursor: default;
  color: var(--muted);
  background: #1c232c;
}

.room-description-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 10px;
}

.room-title {
  font-weight: 700;
  color: var(--text);
}

.room-card {
  min-height: 64px;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(180deg, #1f2530, #1b212b);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 10px 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}

.room-card:hover {
  transform: translateY(-1px);
  border-color: #4a5566;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 20px rgba(0, 0, 0, 0.34);
}

.room-card.room-card-active {
  border-color: rgba(230, 126, 34, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(230, 126, 34, 0.35),
    0 10px 20px rgba(230, 126, 34, 0.18);
}

.room-card-title-input {
  width: 100%;
  min-width: 0;
  cursor: text;
  font: inherit;
  color: var(--text);
  text-align: center;
}

.room-card-title-input:hover {
  transform: none;
}

.room-card-title-input:focus {
  transform: none;
  outline: 2px solid rgba(230, 126, 34, 0.45);
  outline-offset: 1px;
}

.room-card-create {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  text-transform: none;
  border-color: rgba(230, 126, 34, 0.45);
  background: linear-gradient(180deg, rgba(230, 126, 34, 0.12), rgba(230, 126, 34, 0.06));
  color: #ffd6a8;
}

.room-card-create:hover {
  border-color: rgba(230, 126, 34, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 22px rgba(230, 126, 34, 0.24);
}

.room-card-empty {
  cursor: default;
  opacity: 0.5;
  color: #8d98a5;
  border-style: dashed;
  background: linear-gradient(180deg, #1d222a, #1a1f27);
  box-shadow: none;
}

.room-card-plus {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--accent-2);
}

.admin-row input {
  flex: 1;
  min-width: 180px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #eef1f4;
  background: var(--panel-2);
}

.admin-row input:focus {
  outline: 2px solid rgba(230, 126, 34, 0.45);
  outline-offset: 1px;
}

#createRoomButton {
  margin-inline: auto;
}

.btn,
.month-btn,
.day {
  border: none;
  cursor: pointer;
}

.btn,
.month-btn {
  transition: transform 0.14s ease, filter 0.14s ease;
}

.btn:hover,
.month-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn {
  font-weight: 700;
  color: #2b1602;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 10px 18px rgba(230, 126, 34, 0.22);
}

.btn-outline {
  color: #d5dee8;
  background: transparent;
  border: 1px solid var(--line-soft);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: #566274;
  background: rgba(41, 50, 63, 0.45);
}

.hero-invite-btn {
  margin-left: auto;
  align-self: center;
  padding: 7px 11px;
  font-size: 0.8rem;
  white-space: nowrap;
  border-color: rgba(243, 156, 52, 0.85);
  color: #ffd8aa;
  background: rgba(230, 126, 34, 0.14);
  box-shadow:
    0 0 0 1px rgba(243, 156, 52, 0.22),
    0 10px 20px rgba(230, 126, 34, 0.22);
}

.hero-invite-btn:hover {
  border-color: rgba(243, 156, 52, 1);
  color: #ffe7c9;
  background: rgba(230, 126, 34, 0.22);
  box-shadow:
    0 0 0 1px rgba(243, 156, 52, 0.34),
    0 14px 26px rgba(230, 126, 34, 0.32);
}

.danger-btn {
  color: #fff8f8;
  background: linear-gradient(180deg, #ff7e71, #d94c40);
}

.calendar-head {
  display: grid;
  grid-template-columns: auto 1fr 44px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.calendar-left-controls {
  display: inline-flex;
  align-items: center;
}

.calendar-center-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}

.calendar-head h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: #edf3f8;
  text-transform: capitalize;
}

.calendar-mode {
  margin: 0;
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--panel-2);
}

.mode-btn {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c7d1db;
  background: transparent;
  cursor: pointer;
}

.mode-btn-active {
  border-color: rgba(230, 126, 34, 0.6);
  color: #ffe1bd;
  background: rgba(230, 126, 34, 0.16);
}

.top-threshold-control {
  min-width: 180px;
  display: grid;
  gap: 4px;
}

.top-threshold-label {
  color: #c9d2dc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.top-threshold-meta {
  margin-left: 4px;
  color: #9aa6b4;
  font-weight: 600;
}

#topThresholdRange {
  width: 100%;
  accent-color: #e67e22;
}

.month-btn {
  height: 44px;
  border-radius: 12px;
  color: #dce7f0;
  font-size: 1.25rem;
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
}

#backToRoomsButton {
  color: #ffbf74;
  background: var(--panel-2);
  border-color: rgba(230, 126, 34, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(230, 126, 34, 0.18);
}

.weekdays,
.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.weekdays {
  margin-bottom: 6px;
  font-weight: 700;
  text-align: center;
  color: #b5bfc9;
}

.weekend-label {
  color: var(--weekend);
}

.day {
  min-height: 104px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 8px;
  background: var(--panel-2);
  display: grid;
  align-content: start;
  gap: 4px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}

.day:hover {
  transform: translateY(-1px);
  border-color: #4d5968;
}

.day.drag-preview-add,
.year-day.drag-preview-add {
  border-color: #f3c26b;
  box-shadow: 0 0 0 2px rgba(243, 194, 107, 0.35);
}

.day.drag-preview-remove,
.year-day.drag-preview-remove {
  border-color: #ff8f8f !important;
  background: linear-gradient(180deg, #c94a4a, #8e1f1f) !important;
  box-shadow:
    0 0 0 2px rgba(255, 143, 143, 0.45),
    0 10px 24px rgba(120, 18, 18, 0.28),
    inset 0 0 0 2px rgba(255, 196, 196, 0.65) !important;
}

.day.drag-preview-remove .day-number,
.day.drag-preview-remove .day-count,
.day.drag-preview-remove .day-names,
.year-day.drag-preview-remove {
  color: #ffe7e7 !important;
}

.day.empty {
  background: #202731;
  border-style: dashed;
  cursor: default;
}

.day-number {
  font-weight: 700;
  color: #ecf3f9;
}

.day-count {
  font-size: 0.82rem;
  color: #9ba8b5;
}

.day-names {
  font-size: 0.78rem;
  color: #c4cdd7;
  line-height: 1.18;
  max-height: 4.8em;
  overflow: hidden;
}

.day.mine {
  border-color: #d47924;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 8px 18px rgba(230, 126, 34, 0.22);
}

.day.mine .day-number,
.day.mine .day-count,
.day.mine .day-names {
  color: #2b1602;
}

.day.crowd {
  background: rgba(230, 126, 34, 0.14);
  border-color: #8e5925;
}

.day.weekend {
  background: rgba(255, 179, 107, 0.1);
}

.day.weekend .day-number {
  color: #ffb36b;
}

.day.weekend.mine {
  border-color: #d47924;
}

.day.weekend.mine .day-number {
  color: #2b1602;
}

.day.mine.crowd,
.day.weekend.mine.crowd {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.day.best-day {
  border-color: #39a96b;
  color: #eafff3;
  background: linear-gradient(180deg, #2f8f5b, #26754a);
  box-shadow:
    0 0 0 2px rgba(119, 235, 165, 0.4),
    0 0 18px rgba(56, 169, 107, 0.3),
    inset 0 0 0 1px rgba(203, 255, 226, 0.35);
}

.day.best-day.mine,
.day.best-day.crowd,
.day.best-day.weekend,
.day.best-day.mine.crowd,
.day.best-day.weekend.crowd,
.day.best-day.weekend.mine,
.day.best-day.weekend.mine.crowd {
  border-color: #39a96b;
  background: linear-gradient(180deg, #2f8f5b, #26754a);
}

.day.best-day .day-number,
.day.best-day .day-count,
.day.best-day .day-names {
  color: #eafff3;
}

.top-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #d8ffe9;
  background: #123925;
  border-radius: 7px;
  padding: 3px 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  z-index: 3;
  line-height: 1;
  pointer-events: none;
}

.year-calendar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.year-month-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 8px;
  background: var(--panel-2);
}

.year-month-title {
  margin: 0 0 6px;
  color: #d3dbe4;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: capitalize;
}

.year-month-jump {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
  cursor: pointer;
}

.year-month-jump:hover {
  color: #f2f7fb;
}

.year-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.year-day {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 30px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: #1d2430;
  color: #dce5ee;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}

.year-day:hover {
  transform: translateY(-1px);
  border-color: #4d5968;
}

.year-day.empty {
  cursor: default;
  border-style: dashed;
  background: #1a202a;
}

.year-day.crowd {
  background: rgba(230, 126, 34, 0.14);
  border-color: #8e5925;
}

.year-day.weekend {
  background: rgba(255, 179, 107, 0.1);
  border-color: #7f6038;
  color: #ffb36b;
}

.year-day.mine {
  color: #2b1602;
  border-color: #d47924;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.year-day.best-day {
  border-color: #39a96b;
  color: #eafff3;
  background: linear-gradient(180deg, #2f8f5b, #26754a);
  box-shadow:
    0 0 0 1px rgba(119, 235, 165, 0.4),
    0 0 12px rgba(56, 169, 107, 0.3);
}

.year-day-top-badge {
  position: absolute;
  top: -2px;
  right: 3px;
  padding: 1px 4px;
  border-radius: 5px;
  background: #123925;
  color: #d8ffe9;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
}


@media (max-width: 980px) {
  .app {
    padding: 14px;
  }

  .auth-panel {
    max-width: 760px;
    gap: 24px;
    transform: translateY(-12px);
  }

  .workspace,
  #roomView.workspace {
    grid-template-columns: 1fr;
  }

  .mobile-room-delete-slot {
    display: block;
    margin-top: 12px;
  }

  .mobile-room-delete-slot #deleteRoomButton {
    width: 100%;
  }

  .logo-text {
    letter-spacing: 0.04em;
  }
}

@media (min-width: 981px) {
  .dashboard-screen {
    align-items: start;
  }

  .dashboard-panel {
    width: 100%;
    margin: 0;
    padding: 12px 22px 84px;
    border-radius: 24px;
  }

  .icon-action {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .dashboard-tabs {
    margin-top: 6px;
    width: min(100%, 360px);
    padding: 4px;
  }

  .dashboard-tab {
    min-height: 42px;
    font-size: 0.95rem;
  }

  .dashboard-whoami {
    margin-top: 16px;
    font-size: 0.95rem;
  }

  .dashboard-section {
    margin-top: 14px;
    gap: 10px;
  }

  .dashboard-section-title {
    font-size: 0.98rem;
  }

  .dashboard-cards {
    max-width: 980px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .meeting-card,
  .dashboard-empty-card {
    padding: 16px;
    border-radius: 18px;
  }

  .meeting-card {
    gap: 10px;
  }

  .meeting-card-title {
    font-size: 1.05rem;
  }

  .meeting-card-meta {
    min-height: 0;
    font-size: 0.92rem;
  }

  .meeting-card-footer {
    padding-top: 10px;
  }

  .meeting-card-footer-label {
    font-size: 0.92rem;
  }

  .meeting-card-arrow {
    font-size: 1.45rem;
  }

  .dashboard-fab {
    position: static;
    width: fit-content;
    max-width: 100%;
    min-height: 58px;
    margin: 20px auto 0;
    font-size: 1rem;
  }

  .dashboard-fab-plus {
    font-size: 1.7rem;
  }

  .modal-card {
    width: min(100%, 460px);
    padding: 18px;
    border-radius: 20px;
  }
}

@media (max-width: 700px) {
  .app {
    height: auto;
    min-height: 100dvh;
    padding: 10px;
  }

  .hero,
  .controls,
  .calendar-section,
  .admin-controls {
    border-radius: 12px;
  }

  .hero {
    padding: 14px;
    min-height: 0;
  }

  .logo-wrap {
    display: grid;
    gap: 8px;
  }

  .logo-top {
    align-items: flex-end;
    gap: 6px;
  }

  .logo-text {
    font-size: clamp(1.55rem, 9vw, 2.35rem);
    letter-spacing: 0.03em;
  }

  .logo-alpha {
    font-size: 0.58rem;
    opacity: 0.6;
  }

  .hero-info {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
    align-items: flex-start;
    gap: 8px;
  }

  .bottom-global-actions {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .hero-invite-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .stats {
    min-width: 0;
    width: 100%;
    margin-left: 0;
  }

  .controls,
  .calendar-section,
  .admin-controls {
    padding: 10px;
  }

  .auth-panel {
    max-width: 100%;
    transform: none;
    gap: 16px;
  }

  .auth-title {
    font-size: clamp(1.35rem, 7vw, 2.1rem);
    max-width: 24ch;
  }

  .auth-tabs {
    flex-wrap: wrap;
  }

  .user-picker {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .user-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .user-btn {
    white-space: nowrap;
    font-size: 0.78rem;
    min-height: 30px;
    padding: 0 9px;
  }

  .calendar-head {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
    align-items: center;
  }

  .calendar-center-controls {
    justify-content: space-between;
    gap: 8px;
  }

  .top-threshold-control {
    width: 100%;
    min-width: 0;
    order: 3;
  }

  .calendar-head h2 {
    font-size: 1.2rem;
    text-align: left;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .calendar-left-controls {
    width: auto;
    justify-content: center;
  }

  .month-btn {
    height: 38px;
    font-size: 1.05rem;
  }

  .calendar-mode {
    padding: 3px;
    gap: 4px;
  }

  .mode-btn {
    padding: 5px 10px;
    font-size: 0.76rem;
  }

  .weekdays,
  .calendar {
    gap: 4px;
  }

  .year-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .weekdays {
    font-size: 0.88rem;
  }

  .day {
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 6px;
    border-radius: 10px;
  }

  .day-number {
    font-size: 0.95rem;
  }

  .day-count,
  .day-names {
    display: none;
  }

  .day.crowd::after {
    content: none;
    display: none;
  }

  .top-badge {
    display: none;
  }

  .year-day-top-badge {
    display: none;
  }

  .year-day {
    min-height: 26px;
    font-size: 0.68rem;
    border-radius: 6px;
  }

  .admin-row {
    flex-direction: column;
  }

  .admin-row input,
  .admin-row .btn {
    width: 100%;
  }

  .auth-row input {
    min-width: 0;
  }

  .dashboard-head,
  .room-head {
    flex-direction: column;
    align-items: stretch;
  }

  .workspace-left,
  .workspace-main,
  .workspace-right {
    border-radius: 12px;
    padding: 10px;
    overflow: visible;
    min-height: auto;
    max-width: 100%;
  }

  .workspace {
    height: auto;
  }

  .workspace * {
    min-width: 0;
  }

  .workspace-top,
  .workspace-main,
  .workspace-right {
    overflow: visible;
  }

  .room-title-wrap {
    justify-content: center;
  }

  .room-title-wrap h2 {
    font-size: 1.1rem;
  }

  .room-actions {
    width: 100%;
    flex-direction: column;
  }

  .room-actions .btn {
    width: 100%;
  }

  .room-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .room-card {
    min-height: 72px;
    font-size: 0.98rem;
    border-radius: 12px;
    padding: 10px;
    line-height: 1.15;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .room-description-view,
  .room-description-input {
    font-size: 0.95rem;
  }

  .room-description-hint {
    font-size: 0.72rem;
  }

  .room-users .user-picker {
    padding-right: 12px;
  }
}

@media (orientation: landscape) and (max-width: 1000px) and (hover: none) and (pointer: coarse) {
  .app {
    height: auto;
    min-height: 100dvh;
    padding: 8px;
    gap: 8px;
  }

  .hero,
  .controls,
  .calendar-section,
  .admin-controls,
  .workspace-left,
  .workspace-main,
  .workspace-right {
    border-radius: 10px;
  }

  .hero {
    padding: 10px 12px;
  }

  .logo-text {
    font-size: clamp(1.2rem, 4vw, 1.9rem);
  }

  .logo-alpha {
    font-size: 0.54rem;
  }

  .hero-info {
    gap: 8px;
  }

  .hero-invite-btn {
    width: auto;
    min-height: 36px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .workspace {
    height: auto;
    gap: 8px;
  }

  .workspace-left,
  .workspace-main,
  .workspace-right {
    padding: 10px;
    min-height: auto;
    overflow: visible;
    max-width: 100%;
  }

  .workspace-top,
  .workspace-main,
  .workspace-right {
    overflow: visible;
  }

  .workspace * {
    min-width: 0;
  }

  .room-sidebar-head {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .room-sidebar-head::after {
    width: 40px;
    height: 40px;
  }

  .room-title-wrap h2 {
    font-size: 1rem;
  }

  .room-card {
    min-height: 58px;
    padding: 8px 10px;
    font-size: 0.92rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .room-description-view,
  .room-description-input {
    min-height: 72px;
    font-size: 0.88rem;
  }

  .room-description-hint {
    font-size: 0.68rem;
  }

  .calendar-head {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .calendar-center-controls {
    gap: 8px;
  }

  .calendar-head h2 {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .month-btn {
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
  }

  .calendar-mode {
    padding: 3px;
    gap: 4px;
  }

  .mode-btn {
    padding: 5px 12px;
    font-size: 0.74rem;
  }

  .top-threshold-label {
    font-size: 0.78rem;
  }

  .year-calendar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .year-month-card {
    padding: 6px;
  }

  .year-month-title {
    margin-bottom: 4px;
    font-size: 0.8rem;
  }

  .year-day {
    min-height: 22px;
    font-size: 0.62rem;
  }

  .room-users {
    gap: 4px;
  }

  .room-users .picker-title,
  #roomParticipantStats,
  #roomModeText {
    font-size: 0.82rem;
  }

  .user-picker {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .user-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .user-btn {
    min-height: 28px;
    font-size: 0.72rem;
    padding: 0 8px;
  }

  .top-badge,
  .year-day-top-badge {
    display: none;
  }
}
