/* Custom CSS Variables */
:root {
    --theme-color-one: #9876e7;
    --theme-color-two: #5f80f9;
    --nuro-gradient: linear-gradient(
      60deg,
      var(--theme-color-one),
      var(--theme-color-two)
    );
    --user-gradient: radial-gradient(white, #dee4f9, white);
  }
  
  /* Custom Scrollbar */
  /* Firefox */
  
  /* .nuro-chat {
    scrollbar-width: thin;
    scrollbar-color: var(--theme-color-two) var(--theme-color-one);
  } */
  
  /* Chrome, Edge, and Safari */
  
  .nuro-chat::-webkit-scrollbar {
    width: 6px;
  }
  
  .nuro-chat::-webkit-scrollbar-track {
    border-radius: 5px;
    margin: 0.1rem 0 0.1rem 0;
  }
  
  .nuro-chat::-webkit-scrollbar-thumb {
    background-color: #E1E6EC;
    border-radius: 14px;
    
  }
  
  .nuro-chat::-webkit-scrollbar:window-inactive {
    width: 2px;
    height: 2px;
  }
  
  /* -Custom Scrollbar */
  
  .nuro-bg {
    background-image: var(--nuro-gradient);
  }
  
  /* * * {
    border: 1px solid red;
    outline: 1px solid blue;
  } */
  
  /* ================All Buttons======================= */
  .chat-activate-btn {
    background-image: var(--nuro-gradient);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    box-shadow: 0rem 0.1rem 1rem hsla(210, 87%, 50%, 0.5);
    border: none;
    position:fixed;

    z-index: 10001000;
  }
  
  .close-btn {
    background-color: transparent;
    border: none;
    padding: 1rem;
    border-radius: 50%;
  }
  
  .send-btn {
    background-image: var(--nuro-gradient);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    box-shadow: 0rem 0.1rem 1rem hsla(210, 87%, 50%, 0.5);
    border: none;
    /* box-sizing: content-box; */
    position: absolute;
    bottom: 0;
    right: 0;
    position: fixed;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* =====================UI ELEMENTS=================== */
  .chat-area {
    background-color: white;
    width: 24rem;
    height: 38rem;
    box-shadow: 0rem 0.1rem 1.5rem hsla(210, 87%, 50%, 0.3);
    /* position: relative; */
    font-family: "Poppins", sans-serif !important;
    position:fixed !important;
    z-index: 10001000;
  }
  
  .chat-activate:hover {
    box-shadow: 0rem 0.2rem 1rem #1380ee48;
  }
  
  .nuro-header {
    background-image: url(./header-base.svg), var(--nuro-gradient);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 7rem;
    padding: 1rem;
  }
  
  /* ================Chat Screen CSS================ */
  .nuro-chat {
    /* background-color: paleturquoise; */
    width: 100%;
    height: 70%;
    padding: 1.1rem 0.8rem;
    overflow: scroll;
  }
  
  .text-form {
    /* background-color: #687df6; */
    width: 100%;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    height: 4rem;
  }
  
  .text-input {
    border: none;
    background-color: hsl(218, 100%, 98%);
    width: 88%;
    height: 2.8rem;
    padding: 0rem 1rem;
    border-radius: 0.7rem;
    margin-bottom: 0.6rem;
  }
  
  .text-input:focus-visible {
    background-color: hsl(217, 100%, 95%);
    outline: none;
    border: none;
  }
  
  .text-input::placeholder {
    color: rgb(124, 124, 124);
  }
  
  .nuro-chat-thread {
    width: 80%;
    display: flex;
    justify-content: start;
    position: relative;
  }
  
  .chat-icon {
    height: 2rem;
    width: 2rem;
    /* background-image: var(--nuro-gradient); */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -1.1rem;
    left: -0.5rem;
    -webkit-filter: drop-shadow(0rem 0.1rem 0.2rem hsla(258, 41%, 32%, 0.61));
    filter: drop-shadow(0rem 0.1rem 0.2rem hsla(258, 41%, 32%, 0.61));
  }
  
  .nuro-text {
    background-image: var(--nuro-gradient);
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    word-break: normal;
  }
  
  .user-chat-thread {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    /* right: auto; */
    position: relative;
    /* margin-right: auto; */
  }
  
  .user-text {
    background-color: rgb(234, 237, 241);
    color: black;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    word-break: normal;
  }
  
  .user-icon {
    height: 1.2rem;
    width: 1.2rem;
    /* background-image: var(--user-gradient); */
    border-radius: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 1.1rem;
    right: -0.5rem;
    -webkit-filter: drop-shadow(0rem 0.1rem 0.2rem hsla(258, 41%, 32%, 0.61));
    filter: drop-shadow(0rem 0.1rem 0.2rem hsla(258, 41%, 32%, 0.61));
  }
  
  .nuro-calendar {
    width: 100%;
    height: 69%;
    padding: 1.1rem 2rem;
    /* overflow: scroll; */
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    place-content: center;
    position: relative;
  
    isolation: isolate;
  }
  /* .nuro-calendar::before {
    content: "";
    position: absolute;
    inset: 50% 0 50% 0;
    background-image: url(./assets/calendar.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 85%;
    opacity: 0.15;
    z-index: -1;
  } */
  
  .date-picker {
    background: white;
    color: var(--theme-color-two);
    cursor: pointer;
    width: 15rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0.5rem auto;
    box-shadow: 0rem 0.1rem 1rem #1380ee48;
    margin-left: 0px !important;
  }
  
  .date-picker:focus-visible {
    border: none;
    outline: 2px solid rgb(160, 160, 252);
  }
  
  .date-picker::placeholder {
    color: var(--theme-color-two); 
  }



  .time-picker {
    position: fixed;
    /* display: inline-block; */
    padding: 10px;
    background: #eeeeee;
    border-radius: 6px;
    z-index: 10001000;

  }
  .time-picker__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    text-align: center;
    border: 1px solid #dddddd;
    border-radius: 6px;
    padding: 6px 10px;
    background: #ffffff;
    cursor: pointer;
    /* font-family: 'Heebo', sans-serif; */
  }



.custom-select{
  -webkit-appearance: none;
  -moz-appearance: none;
}
.custom-select__select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 6px;
  padding: 6px 10px;
  background: #ffffff;
  cursor: pointer;
}




