.home-page{
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.map-view-btn{
    padding: 5px;
    color: white;
    background-color: black;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.reset-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    background-color: #967BB6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 999;
}

.no-events-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #967BB6;


}

.right-panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    border-left: 2px solid #ccc;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 999;
  }

  .right-panel .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  .right-panel .context-title  {
    margin-bottom: 20px;
  }

  .right-panel .date-time-text .title, .right-panel .context-title .title  {
    color: #967BB6;


  }