#gcal-shortlist .jla-calendar-event {
    display: flex;
    border: 1px solid #ccc;
    padding: 6px;
    margin-bottom: 6px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  #gcal-shortlist .jla-calendar-date {
    width: 80px;
    text-align: Left;
    flex-shrink: 0;
    line-height: 1.2;
  }
  #gcal-shortlist .jla-weekday,
  #gcal-shortlist .jla-month {
    font-size: 14px;
    color: #666;
  }
  #gcal-shortlist .jla-daynum {
    font-size: 18px;
    font-weight: bold;
  }
  #gcal-shortlist .jla-daterange {
    font-size: 14px;
    color: #666;
    line-height: 1.2;
  }
  #gcal-shortlist .jla-calendar-title {
    flex: 2;
    padding: 0 8px 0 0;
    min-width: 0;
    display: flex;
    align-items: flex-start;
  }
  #gcal-shortlist .jla-calendar-title a {
    font-size: 16px;
    font-weight: bold;
    color: #1a73e8;
    text-decoration: none;
    word-wrap: break-word;
    line-height: 1.1;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0;
    transition: font-size 0.3s ease; /* smoothly transition font-size */
  }
  
  #gcal-shortlist .jla-calendar-title a:hover {
    font-size: 18px; /* or another larger size you prefer */
  }
  
  #gcal-shortlist .jla-calendar-time-location {
    flex: 1.5;
    min-width: 0;
    line-height: 1.2;
  }
  #gcal-shortlist .jla-calendar-time {
    font-size: 14px;
  }
  #gcal-shortlist .jla-calendar-location {
    font-size: 13px;
    color: #555;
    margin-top: 2px;
  }
  #gcal-shortlist .jla-map-icon {
    font-size: 18px;
    margin-right: 3px;
    color: #555;
  }
  @media (max-width: 600px) {
    #gcal-shortlist .jla-calendar-event {
      flex-direction: column;
      align-items: flex-start;
    }
    #gcal-shortlist .jla-calendar-date {
      width: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 4px;
    }
  }
  