    .rooms-module { width: 100%; margin-top: 14px; }

    /* Status cards */
    .room-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 22px;
    }
    .room-card {
      background: rgba(0, 0, 0, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      padding: 16px 14px 16px 18px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
      gap: 4px;
      text-align: left;
      position: relative;
      overflow: hidden;
      border-left-width: 5px;
      border-left-style: solid;
    }
    /* Color-code left edge by room (matches grid event pills) */
    .room-card[data-room="bay"]      { border-left-color: #60a5fa; }
    .room-card[data-room="tacoma"]   { border-left-color: #f472b6; }
    .room-card[data-room="annex"]    { border-left-color: #fbbf24; }
    .room-card[data-room="training"] { border-left-color: #a78bfa; }
    .room-card::after {
      content: '';
      position: absolute;
      top: 10px;
      right: 10px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.9;
    }
    .room-card[data-room="bay"]::after      { color: #60a5fa; }
    .room-card[data-room="tacoma"]::after   { color: #f472b6; }
    .room-card[data-room="annex"]::after    { color: #fbbf24; }
    .room-card[data-room="training"]::after { color: #a78bfa; }
    .room-card:hover {
      border-color: rgba(255, 255, 255, 0.4);
      background: rgba(0, 0, 0, 0.35);
      transform: translateY(-1px);
    }
    .room-card .card-name {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: #fff;
      line-height: 1.2;
    }
    .room-card .card-sub {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.45);
      line-height: 1.3;
    }
    .room-card .card-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 8px;
    }
    .room-card .card-status::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 6px rgba(74,222,128,0.6);
    }
    .room-card.booked .card-status::before { background: #f87171; box-shadow: 0 0 6px rgba(248,113,113,0.6); }
    .room-card.booked .card-status { color: #fca5a5; }
    .room-card:not(.booked) .card-status { color: #86efac; }
    .room-card .card-next {
      font-size: 10px;
      color: rgba(255,255,255,0.55);
      margin-top: 3px;
      line-height: 1.35;
    }

    /* Header bar above grid */
    .grid-header-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
      padding-top: 6px;
      flex-wrap: wrap;
    }
    .grid-header-bar .grid-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(0,0,0,0.7);
    }
    .grid-nav { display: flex; gap: 6px; align-items: center; }
    .grid-nav button {
      background: rgba(0, 0, 0, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      padding: 6px 12px;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .grid-nav button:hover { background: rgba(0,0,0,0.45); border-color: rgba(255,255,255,0.4); }
    .grid-nav .week-label {
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.85);
      letter-spacing: 1px;
      padding: 0 10px;
      min-width: 145px;
      text-align: center;
    }

    /* Room tabs for mobile grid */
    .grid-room-tabs {
      display: flex;
      gap: 4px;
      background: rgba(0,0,0,0.2);
      border-radius: 6px;
      padding: 4px;
      margin-bottom: 10px;
      overflow-x: auto;
    }
    .grid-room-tabs button {
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: rgba(255,255,255,0.55);
      background: transparent;
      border: none;
      padding: 8px 14px;
      border-radius: 4px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .grid-room-tabs button.active { background: rgba(255,255,255,0.15); color: #fff; }
    /* Color dots on room filter tabs */
    .grid-room-tabs button[data-filter="bay"],
    .grid-room-tabs button[data-filter="tacoma"],
    .grid-room-tabs button[data-filter="annex"],
    .grid-room-tabs button[data-filter="training"] {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }
    .grid-room-tabs button[data-filter="bay"]::before,
    .grid-room-tabs button[data-filter="tacoma"]::before,
    .grid-room-tabs button[data-filter="annex"]::before,
    .grid-room-tabs button[data-filter="training"]::before {
      content: '';
      width: 9px;
      height: 9px;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.3);
    }
    .grid-room-tabs button[data-filter="bay"]::before      { background: #60a5fa; }
    .grid-room-tabs button[data-filter="tacoma"]::before   { background: #f472b6; }
    .grid-room-tabs button[data-filter="annex"]::before    { background: #fbbf24; }
    .grid-room-tabs button[data-filter="training"]::before { background: #a78bfa; }

    /* Grid */
    .grid-wrap {
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      overflow: hidden;
      overflow-x: auto;
    }
    .week-grid {
      display: grid;
      grid-template-columns: 56px repeat(7, minmax(80px, 1fr));
      min-width: 620px;
    }
    .week-grid .g-corner { border-bottom: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); }
    .week-grid .g-header {
      padding: 10px 6px 8px;
      font-family: 'Oswald', sans-serif;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.3px;
      color: rgba(255,255,255,0.55);
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      border-left: 1px solid rgba(255,255,255,0.05);
      background: rgba(0,0,0,0.22);
      line-height: 1.3;
    }
    .week-grid .g-header .g-date { font-size: 13px; font-weight: 200; color: rgba(255,255,255,0.85); display: block; margin-top: 1px; }
    .week-grid .g-header.today { background: rgba(255,255,255,0.08); }
    .week-grid .g-header.today .g-date { color: #fff; font-weight: 700; }
    .week-grid .g-time {
      padding: 2px 6px 0 0;
      font-family: 'Oswald', sans-serif;
      font-size: 9px;
      font-weight: 400;
      color: rgba(255,255,255,0.35);
      text-align: right;
      border-right: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px dashed rgba(255,255,255,0.04);
      letter-spacing: 0.5px;
      line-height: 20px;
      height: 20px;
    }
    .week-grid .g-slot {
      position: relative;
      height: 20px;
      border-bottom: 1px dashed rgba(255,255,255,0.04);
      border-left: 1px solid rgba(255,255,255,0.04);
      cursor: pointer;
      transition: background 0.15s;
    }
    .week-grid .g-slot:hover { background: rgba(255,255,255,0.07); }
    .week-grid .g-slot.hour-mark { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .week-grid .g-slot.past { cursor: not-allowed; background: rgba(0,0,0,0.15); }
    .week-grid .g-slot.past:hover { background: rgba(0,0,0,0.15); }
    .week-grid .g-slot.today-col { background: rgba(255,255,255,0.02); }

    .g-resv {
      position: absolute;
      left: 2px; right: 2px;
      background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.12));
      border: 1px solid rgba(255,255,255,0.3);
      border-left: 3px solid #fff;
      border-radius: 4px;
      padding: 3px 5px;
      font-family: 'Oswald', sans-serif;
      font-size: 10px;
      color: #fff;
      cursor: pointer;
      overflow: hidden;
      z-index: 2;
      line-height: 1.2;
    }
    .g-resv[data-room="bay"]      { border-left-color: #60a5fa; }
    .g-resv[data-room="tacoma"]   { border-left-color: #f472b6; }
    .g-resv[data-room="annex"]    { border-left-color: #fbbf24; }
    .g-resv[data-room="training"] { border-left-color: #a78bfa; }
    .g-resv:hover { background: linear-gradient(135deg, rgba(255,255,255,0.32), rgba(255,255,255,0.2)); }
    .g-resv .r-title {
      font-weight: 700;
      letter-spacing: 0.4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 10px;
    }
    .g-resv .r-meta { font-size: 9px; opacity: 0.8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* View toggle (Week/Month) */
    .view-toggle {
      display: inline-flex;
      gap: 0;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 6px;
      overflow: hidden;
      background: rgba(0,0,0,0.25);
    }
    .view-toggle button {
      background: transparent;
      border: none;
      color: rgba(255,255,255,0.7);
      padding: 6px 14px;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    .view-toggle button + button { border-left: 1px solid rgba(255,255,255,0.2); }
    .view-toggle button:hover { color: #fff; background: rgba(255,255,255,0.08); }
    .view-toggle button.active { background: rgba(255,255,255,0.18); color: #fff; font-weight: 500; }

    /* Month grid */
    .month-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 6px;
      overflow: hidden;
    }
    .month-grid .m-header {
      background: rgba(0,0,0,0.35);
      padding: 8px 6px;
      text-align: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
    }
    .month-grid .m-day {
      background: rgba(0,62,67,0.92);
      min-height: 92px;
      padding: 6px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 3px;
      transition: background 0.15s;
      position: relative;
    }
    .month-grid .m-day:hover { background: rgba(0,80,86,0.95); }
    .month-grid .m-day.other-month { background: rgba(0,30,34,0.6); color: rgba(255,255,255,0.4); }
    .month-grid .m-day.other-month:hover { background: rgba(0,40,44,0.7); }
    .month-grid .m-day.past { cursor: not-allowed; }
    .month-grid .m-day.today { background: rgba(255,255,255,0.1); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35); }
    .month-grid .m-date {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 14px;
      color: #fff;
      line-height: 1;
    }
    .month-grid .m-day.today .m-date { font-weight: 700; }
    .month-grid .m-events { display: flex; flex-direction: column; gap: 2px; flex: 1; }
    .month-grid .m-event {
      background: rgba(255,255,255,0.18);
      border-left: 3px solid rgba(255,255,255,0.6);
      padding: 2px 5px;
      font-size: 10px;
      line-height: 1.3;
      color: #fff;
      border-radius: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      cursor: pointer;
    }
    .month-grid .m-event:hover { background: rgba(255,255,255,0.3); }
    .month-grid .m-event[data-room="bay"]      { border-left-color: #60a5fa; }
    .month-grid .m-event[data-room="tacoma"]   { border-left-color: #f472b6; }
    .month-grid .m-event[data-room="annex"]    { border-left-color: #fbbf24; }
    .month-grid .m-event[data-room="training"] { border-left-color: #a78bfa; }
    .month-grid .m-more {
      font-size: 9px;
      color: rgba(255,255,255,0.7);
      padding: 1px 4px;
      letter-spacing: 0.5px;
    }

    /* Loading */
    .grid-loading {
      padding: 60px 20px;
      text-align: center;
      color: rgba(255,255,255,0.5);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 40, 42, 0.78);
      backdrop-filter: blur(4px);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: #036970;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 10px;
      padding: 28px 28px 24px;
      width: 100%;
      max-width: 460px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.55);
      max-height: 90vh;
      overflow-y: auto;
    }
    .modal-box h3 {
      font-family: 'Oswald', sans-serif;
      font-weight: 200;
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #fff;
      margin-bottom: 4px;
      line-height: 1.1;
    }
    .modal-box h3 strong { font-weight: 700; }
    .modal-box .modal-sub {
      font-size: 11px;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 18px;
    }
    .modal-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
    .modal-field label {
      font-family: 'Oswald', sans-serif;
      font-size: 10px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,0.55);
    }
    .modal-field input,
    .modal-field select,
    .modal-field textarea {
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      padding: 10px 12px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 5px;
      background: rgba(0,0,0,0.3);
      color: #fff;
      outline: none;
      transition: border-color 0.2s;
    }
    .modal-field select option { background: #036970; color: #fff; }
    .modal-field input:focus,
    .modal-field select:focus,
    .modal-field textarea:focus { border-color: rgba(255,255,255,0.55); }
    .modal-field textarea { resize: vertical; min-height: 60px; }
    .modal-time-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .modal-sop-notice {
      background: rgba(251, 191, 36, 0.12);
      border: 1px solid rgba(251, 191, 36, 0.45);
      border-radius: 6px;
      padding: 10px 12px;
      font-size: 12px;
      color: #fde68a;
      margin-bottom: 14px;
      line-height: 1.45;
      display: none;
    }
    .modal-sop-notice.show { display: block; }
    .modal-sop-notice strong { color: #fbbf24; letter-spacing: 1px; text-transform: uppercase; font-size: 10px; display: block; margin-bottom: 3px; }
    .modal-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 18px; flex-wrap: wrap; }
    .modal-actions button {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 10px 18px;
      border-radius: 5px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.2s;
    }
    .modal-actions .btn-secondary { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
    .modal-actions .btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
    .modal-actions .btn-primary { background: #fff; color: #036970; }
    .modal-actions .btn-primary:hover { background: rgba(255,255,255,0.88); }
    .modal-actions .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
    .modal-actions .btn-danger { background: transparent; color: #fca5a5; border-color: rgba(248, 113, 113, 0.4); margin-right: auto; }
    .modal-actions .btn-danger:hover { background: rgba(248,113,113,0.12); }
    .modal-error {
      background: rgba(248,113,113,0.15);
      border: 1px solid rgba(248,113,113,0.38);
      color: #fecaca;
      padding: 8px 12px;
      border-radius: 5px;
      font-size: 12px;
      margin-bottom: 12px;
      display: none;
    }
    .modal-error.show { display: block; }

    @media (max-width: 768px) {
      .room-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .grid-header-bar { flex-wrap: wrap; }
    }
    @media (max-width: 500px) {
      .grid-header-bar .grid-nav { width: 100%; justify-content: space-between; }
      .week-grid { grid-template-columns: 50px repeat(7, minmax(70px, 1fr)); }
      .month-grid .m-header { padding: 6px 2px; font-size: 9px; letter-spacing: 1px; }
      .month-grid .m-day { min-height: 62px; padding: 3px; }
      .month-grid .m-date { font-size: 11px; }
      .month-grid .m-event {
        font-size: 0;              /* hide text label on narrowest screens */
        padding: 0;
        height: 6px;
        border-left-width: 0;
        border-radius: 3px;
      }
      .month-grid .m-event[data-room="bay"]      { background: #60a5fa; }
      .month-grid .m-event[data-room="tacoma"]   { background: #f472b6; }
      .month-grid .m-event[data-room="annex"]    { background: #fbbf24; }
      .month-grid .m-event[data-room="training"] { background: #a78bfa; }
      .month-grid .m-more { font-size: 8px; padding: 0 2px; }
    }
    /* Rooms module styles moved to rooms-calendar.css */

    /* ===== EVENTS WIDGET — dark tone-on-tone ===== */
    .events-widget {
      width: 100%;
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 18px 20px 16px;
      margin-bottom: 22px;
      position: relative;
    }
    /* Slim accent stripe at top, matches the grid-wrap brand feel */
    .events-widget::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, #048c94 0%, rgba(4,140,148,0.2) 100%);
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }
    .events-widget-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      flex-wrap: wrap;
    }
    .events-widget-header h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 20px;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.95);
      text-transform: uppercase;
      margin: 0;
      font-weight: 400;
    }
    .events-widget-header h3 strong {
      font-weight: 600;
      color: #fff;
    }
    .events-widget-header .events-meta {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.55);
      font-family: 'Oswald', sans-serif;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-weight: 400;
    }
    .events-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
      max-height: 360px;
      overflow-y: auto;
      padding-right: 4px;
    }
    .events-list::-webkit-scrollbar { width: 6px; }
    .events-list::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 4px; }
    .events-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
    .events-list::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.35); }
    .event-row {
      display: grid;
      grid-template-columns: 52px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 10px 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-left: 3px solid #048c94;
      border-radius: 6px;
      transition: background 0.15s, border-color 0.15s, transform 0.1s;
      cursor: pointer;
    }
    .event-row:hover {
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(255, 255, 255, 0.18);
      border-left-color: #2dd4bf;
    }
    .event-row:active { transform: scale(0.995); }

    /* Event details modal */
    .event-detail-overlay {
      position: fixed;
      inset: 0;
      background: rgba(2, 30, 33, 0.78);
      backdrop-filter: blur(4px);
      z-index: 2100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .event-detail-overlay.open { display: flex; }
    .event-detail-box {
      background: #fff;
      border-radius: 12px;
      width: 100%;
      max-width: 560px;
      max-height: 88vh;
      overflow-y: auto;
      box-shadow: 0 25px 70px rgba(0,0,0,0.5);
      position: relative;
    }
    .event-detail-header {
      background: #036970;
      color: #fff;
      padding: 22px 26px 18px;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }
    .event-detail-header h3 {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 22px;
      letter-spacing: 0.4px;
      margin: 0 36px 6px 0;
      line-height: 1.25;
      color: #fff;
    }
    .event-detail-header .ed-when {
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,0.85);
    }
    .event-detail-close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      transition: background 0.15s;
    }
    .event-detail-close:hover { background: rgba(255,255,255,0.3); }
    .event-detail-body {
      padding: 20px 26px 24px;
      font-family: 'Open Sans', sans-serif;
      color: #0f172a;
    }
    .ed-meta-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 13px;
      color: #475569;
      margin-bottom: 10px;
      line-height: 1.45;
    }
    .ed-meta-row .ed-label {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 10px;
      color: #048c94;
      min-width: 68px;
      padding-top: 2px;
    }
    .ed-meta-row .ed-value {
      flex: 1;
      word-break: break-word;
    }
    .ed-meta-row .ed-value a { color: #0369a1; }
    .ed-links {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin: 14px 0 4px;
    }
    .ed-links a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #048c94;
      color: #fff;
      text-decoration: none;
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      letter-spacing: 1px;
      padding: 8px 14px;
      border-radius: 6px;
      text-transform: uppercase;
      transition: background 0.15s;
    }
    .ed-links a:hover { background: #036970; }
    .ed-links a.teams { background: #4b53bc; }
    .ed-links a.teams:hover { background: #3a41a3; }
    .ed-links a.meet { background: #00897b; }
    .ed-links a.meet:hover { background: #00695c; }
    .ed-section-title {
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 11px;
      color: #64748b;
      margin: 18px 0 8px;
      padding-bottom: 6px;
      border-bottom: 1px solid #e2e8f0;
    }
    .ed-description {
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      line-height: 1.55;
      color: #1e293b;
      white-space: pre-wrap;
      word-break: break-word;
    }
    .ed-description a {
      color: #0369a1;
      text-decoration: underline;
      word-break: break-all;
    }
    .ed-description a:hover { color: #075985; }
    .ed-empty {
      color: #94a3b8;
      font-style: italic;
      font-size: 13px;
    }
    .event-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #012e33;
      border: 1px solid rgba(4, 140, 148, 0.4);
      color: #fff;
      border-radius: 6px;
      padding: 8px 6px;
      min-width: 56px;
      font-family: 'Oswald', sans-serif;
      line-height: 1;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    }
    .event-date .ed-month {
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #2dd4bf;
      font-weight: 500;
    }
    .event-date .ed-day {
      font-size: 24px;
      font-weight: 500;
      margin-top: 3px;
      color: #fff;
    }
    .event-info {
      min-width: 0;
    }
    .event-title {
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      color: #fff;
      font-weight: 400;
      letter-spacing: 0.3px;
      margin-bottom: 4px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      line-height: 1.2;
    }
    .event-time {
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.72);
      letter-spacing: 0.2px;
      font-weight: 400;
    }
    .event-time .e-loc {
      color: rgba(255, 255, 255, 0.55);
      margin-left: 6px;
    }
    .event-actions {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-end;
    }
    .event-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
