  .rec-calendar-wrapper {
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      background-color: #ffffff;
      overflow: hidden;
  }

  .rec-calendar-table {
      width: 100%;
      border-collapse: collapse;
  }

  .rec-calendar-table thead th {
      padding: 8px 10px;
      text-align: center;
      font-weight: 600;
      font-size: 0.85rem;
      border-bottom: 1px solid #e5e7eb;
      background-color: #f9fafb;
  }

  .rec-calendar-table td {
      width: 14.285%;
      vertical-align: top;
      border-right: 1px solid #f3f4f6;
      border-bottom: 1px solid #f3f4f6;
      height: 110px;
      padding: 4px 4px 2px 4px;
  }

  .rec-cal-day-inner {
      height: 100%;
      border-radius: 10px;
      padding: 4px 6px;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 2px;
  }

  .rec-cal-day-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      margin-bottom: 2px;
  }

  .rec-cal-day-number {
      font-weight: 600;
  }

  .rec-cal-day-muted {
      color: #9ca3af;
  }

  .rec-cal-count-pill {
      font-size: 0.7rem;
      padding: 1px 6px;
      border-radius: 999px;
      background-color: #e0ecff;
      color: #1d4ed8;
  }

  .rec-cal-event {
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      padding: 2px 6px;
      margin-bottom: 2px;
      font-size: 0.72rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 4px;
      background-color: #f9fafb;
  }

  .rec-cal-event-main {
      min-width: 0;
  }

  .rec-cal-event-name {
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .rec-cal-event-account {
      color: #9ca3af;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .rec-cal-event-category {
      display: inline-block;
      font-size: 0.65rem;
      padding: 1px 6px;
      border-radius: 999px;
      background-color: #eff6ff;
      color: #1d4ed8;
      margin-top: 1px;
      max-width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .rec-cal-event-amount {
      font-weight: 600;
      white-space: nowrap;
  }

  .rec-cal-event-amount.bill {
      color: #b91c1c;
  }

  .rec-cal-event-amount.income {
      color: #15803d;
  }

  .rec-cal-more {
      font-size: 0.7rem;
      color: #6b7280;
  }

  @media (max-width: 992px) {
      .rec-calendar-table td {
          height: 90px;
      }
  }