/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 09 2026 | 07:35:45 */
body {
      margin: 0;
      padding: 40px 20px;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #f7f7f7;
      color: #222;
    }
    .sample-page {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }
    .calendar-tab {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #222;
      border-radius: 999px;
      background: #fff;
      color: #222;
      font-size: 16px;
      font-weight: 700;
      padding: 12px 24px;
      cursor: pointer;
    }
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,.56);
      padding: 24px;
      overflow-y: auto;
    }
    .modal-overlay.is-open {
      display: block;
    }
    .modal-content {
      position: relative;
      max-width: 1120px;
      margin: 32px auto;
      background: #fff;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 8px 32px rgba(0,0,0,.25);
      text-align: left;
    }
    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    .modal-title {
      margin: 0;
      font-size: 24px;
    }
    .close-modal {
      appearance: none;
      border: 0;
      background: #eee;
      border-radius: 999px;
      width: 40px;
      height: 40px;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }
    .month-pager {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin: 8px 0 24px;
    }
    .month-pager button {
      appearance: none;
      border: 1px solid #ccc;
      background: #fff;
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 14px;
      cursor: pointer;
    }
    .month-pager button:disabled {
      opacity: .35;
      cursor: default;
    }
    .current-month {
      min-width: 130px;
      text-align: center;
      font-weight: 700;
      font-size: 18px;
    }
    .calendar-panels {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: start;
    }
    .room-panel {
      min-width: 0;
      border-radius: 12px;
      background: #fff;
    }
    .room-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .room-title {
		padding: 8px;
      margin-bottom: 16px !important;
      font-size: 20px;
		text-align: center;
		background-color: #f2f2f2;
    }
    .room-detail-link {
      flex-shrink: 0;
      font-size: 13px;
      color: #222;
      text-decoration: none;
      border-bottom: 1px solid currentColor;
    }
    .calendar-scroll {
      overflow-x: auto;
    }
    .vacancy-calendar {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
      background: #fff;
    }
    .vacancy-calendar th,
    .vacancy-calendar td {
      border: 1px solid #ddd;
      text-align: center;
      vertical-align: middle;
      height: 50px;
      padding: 5px 3px;
      font-size: 14px;
    }
    .vacancy-calendar th {
      background: #f2f2f2;
      font-weight: 700;
    }
    .vacancy-calendar th:first-child,
    .vacancy-calendar td:first-child {
      color: #d33;
    }
    .vacancy-calendar th:last-child,
    .vacancy-calendar td:last-child {
      color: #2468c9;
    }
    .vacancy-calendar td.is-empty {
      background: #fafafa;
      color: #ccc;
    }
    .vacancy-calendar a {
      display: inline-block;
      margin-top: 3px;
      color: inherit;
      font-weight: 700;
      text-decoration: none;
      border-bottom: 1px solid currentColor;
    }
    .calendar-loading,
    .calendar-error {
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 14px;
      margin-bottom: 12px;
    }
    .calendar-loading {
      background: #eef6ff;
      border: 1px solid #b9ddff;
    }
    .calendar-error {
      display: none;
      background: #fff1f1;
      border: 1px solid #f0b4b4;
      color: #a00;
    }
    .legend {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 18px;
      font-size: 13px;
      color: #555;
      text-align: center;
    }
    .note {
      margin-top: 16px;
      font-size: 12px;
      color: #777;
      line-height: 1.7;
      text-align: center;
    }
    @media (max-width: 900px) {
      .modal-content {
        padding: 20px;
        margin: 20px auto;
      }
      .calendar-panels {
        grid-template-columns: 1fr;
      }
      .month-pager {
        gap: 8px;
      }
      .month-pager button {
        padding: 8px 12px;
      }
    }