@import url('https://fonts.googleapis.com/css2?family=Public+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

.popup {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.popup_box {
    background: #FFFFFF;
    box-shadow: 0px 8px 36px rgba(0, 0, 0, 0.16);
    border-radius: 16px;
    margin: 15% auto; /* 15% from the top and centered */
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #888;
    width: min(40%, 350px); /* Could be more or less, depending on screen size */
}

.popup_box h1 {
    font-family: Public Sans;
    font-style: normal;
    font-weight: bolder;
    font-size: min(19px, 5vw);
    margin: 0 0 30px;
}

.popup_box h2 {
    font-family: Public Sans;
    font-style: normal;
    font-weight: 600;
    font-size: min(12px, 3vw);
    margin: 0;
    color: #2B4BF2;
}

.popup_box h3 {
    font-family: Public Sans;
    font-style: normal;
    font-size: min(16px, 4vw);
    margin: 0 0 20px; 
}

.popup_box input {
    /* Highlight soft */

    background: rgba(123, 151, 206, 0.06);
    /* Accent color */

    border: 1px solid #2B4BF2;
    box-sizing: border-box;
    border-radius: 8px;
    margin: 12px 0 20px; 
    padding: 10px;
    font-family: Public Sans;
    font-style: normal;
    font-weight: 500;
    font-size: min(16px, 4vw);
    line-height: min(24px, 6vw);
}

.popup_box select {
    background: rgba(123, 151, 206, 0.06);
    /* Accent color */

    border: 1px solid #2B4BF2;
    box-sizing: border-box;
    border-radius: 8px;
    margin: 12px 0 20px; 
    padding: 10px;
    font-family: Public Sans;
    font-style: normal;
    font-weight: 500;
    font-size: min(16px, 4vw);
    line-height: min(24px, 6vw);
}

.time_input{
    width: 40%;
    border-radius: 8px;
    margin: 0 0 20px; 
    line-height: min(75px, 20vw);
}

.allDay_input {
    width: 10%;
    border-radius: 8px;
    margin: 0 0 20px; 
}

.time_selector{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.time_selector span {
    display: inline-block;
    vertical-align: middle;
    font-family: Public Sans;
    font-style: normal;
    font-weight: 600;
    font-size: min(19px, 5vw);
    /* line-height: min(22px, 5.5vw); */
    line-height: min(75px, 20vw);
}
 .time_selector label {
    margin-right: auto;
    font-family: Public Sans;
    font-style: normal;
    font-weight: 500;
    font-size: min(16px, 4vw);
    line-height: min(21px, 5.5vw);
 }


.cancel_button {
    border: 1px solid rgba(86, 103, 137, 0.26);
    box-sizing: border-box;
    border-radius: 8px;
    width: 48%;
    font-family: Work Sans;
    font-style: normal;
    font-weight: 600;
    font-size: min(14px, 3.5vw);
    line-height: 36px;
    
}

.save_button {
    float: right;
    background: #6A6DCD;
    border: 1px solid #6A6DCD;
    border-radius: 8px;
    width: 48%;
    font-family: Work Sans;
    font-style: normal;
    font-weight: 600;
    font-size: min(14px, 3.5vw);
    line-height: 36px;
    color: #FFFFFF;
    
}

.select_button {
    background: #6A6DCD;
    border: 1px solid #6A6DCD;
    border-radius: 8px;
    width: 100%;
    margin: 2%;
    font-family: Work Sans;
    font-style: normal;
    font-weight: 600;
    font-size: min(14px, 3.5vw);
    line-height: 36px;
    color: #FFFFFF;
    
}

.cld-main{
  width: 100%;
}
.cld-main a{
  color: white;
}

body{
  font-family: Calibri, sans-serif;
  font-family: 'Inter', sans-serif;
  color: #000;
}

  .cld-datetime{
    position: relative;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 101px;
    margin: auto;
    overflow: hidden;
    background: #F8F8F8;
  }
  .cld-datetime .today{
    position: relative;
    float: left;
    top: 45%;
    width: calc(100% - 40px);
    margin: auto;
    text-align: center;
  }
  .cld-nav{
    position: relative;
    top: 45%;
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
  .cld-nav:hover{
    cursor: pointer;
  }
  .cld-nav:hover svg{
      fill: #666;
  }
  .cld-rwd{
    float: left;
    
  }
  .cld-fwd{
    float: right;
  }

.cld-labels, .cld-days{
  padding-left: 0;
}
  .cld-label, .cld-day{
    box-sizing: border-box;
    display: inline-block;
    width: 14.28%;
    text-align: center;
  }
  .cld-day{
    display: block;
    float: left;
    position: relative;
    margin: 0;
    padding: 5px;
    height: 100px;
    border: 1px solid #ddd;
    overflow-y: auto;
  }
  .cld-day.clickable:hover{
    cursor: pointer;
  }
  .cld-day.today{
    border: 1px solid #7B00FF;
  }
  .cld-day.disableDay{
    opacity: 0.5;
  }
  .cld-day.nextMonth, .cld-day.prevMonth{
    opacity: 0.33;
  }
    .cld-number{
      margin: 0;
      text-align: left;
    }
      .cld-title{
        font-size: 10px;
        display: block;
        margin: 0;
        font-weight: normal;
        background: #6A6DCD;
        box-shadow: 0px 2.92414px 5.84828px rgba(0, 0, 0, 0.12), 0px 11.6966px 23.3931px rgba(0, 0, 0, 0.08);
        border-radius: 5.84828px;
        min-height: 30%;
        padding: 2%;
        margin: 2%;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        overflow: auto;
      }
      .cld-title::-webkit-scrollbar {
        display: none;
      }


      .cld-title a{
        color: white;
        display: flex;
        align-items: center;
      }

      .cld-day:hover{
        background: #eee;
      }
      .cld-number.eventday{
        font-weight: bold; 
      }
      .cld-number.eventday:hover{
        background: #eee;
      }


      
