:root{
    --primaryColor : #e7e7e7;
    --secondaryColor: #e7e7e7;
    --textColor: #313131;
    --hover: #d1d1d1;
    --mainBlue : #356B8C;
    --mainBlueHover : #335b74;
    --actionColor: #0f6cbd;
    --actionColorHover: #12538b;
    --mainBorderRadius : 4px;
}
.dark{
  --primaryColor : #262626;
  --secondaryColor: #313131;
  --textColor: #fff;
  --hover: #d8d8d833;
  --mainBlue : #356B8C;
  --mainBlueHover : #335b74;
  --actionColor: #0f6cbd;
  --actionColorHover: #12538b;
  --mainBorderRadius : 4px;
}

html {
  overflow-y: scroll;
}
@media (prefers-color-scheme: light) {
  :root{
    --primaryColor : #e7e7e7;
    --secondaryColor: #e7e7e7;
    --hover: #d1d1d1;
    --mainBlue : #356B8C;
    --mainBlueHover : #335b74;
    --actionColor: #0f6cbd;
    --actionColorHover: #12538b;
    --mainBorderRadius : 8px;
}
}
body{
    font-family: 'Inter';
    box-sizing: border-box; 
    margin: 0;
    width: 100%;
}
.scalling-animation{
    transition: all 0.2s ease-in-out;
    &:hover{
        transform: scale(1.01);
    }
}
.scrollable {
  overflow: auto;
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #888 transparent; /* For Firefox */
  scroll-snap-align: y mandatory;
}

.scrollable::-webkit-scrollbar {
  width: 8px;
}

.scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.scrollable::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scrollable::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.scrollable {
  scrollbar-gutter: stable;
}

.scrollable:not(:hover)::-webkit-scrollbar {
  display: none;
}

#k{
  display: none;
}
#login_page{
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.login_image,.register_image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}
.overlay{
    background: linear-gradient(to right, rgb(0, 0, 0,0.7), rgb(0, 0, 0,0) ); 
    position: absolute;
    inset: 0;
    z-index: -2;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}
.full_overlay{
  background: rgba(0, 0, 0,0.5);;
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 16px;
}
#login_content{
    /* background: linear-gradient(to right, rgb(0, 0, 0,0.5), rgb(0, 0, 0,0) ) ; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* style.css or a scoped CSS file */
.custom-timepicker .ant-picker-suffix,
.custom-timepicker .ant-picker-clear {
  color: var(--textColor) !important;
}

.input_div{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}
.input_div label{
  font-size: 15px;  
  font-weight: bold;
}
.input{
    border: 2px solid #8AAEE0;
    border-radius: 8px;
    padding: 6px 15px;
    padding-left: 30px;
    width: 100%;
}
select{
    padding-inline: 15px !important;
}
.label{
    position: absolute;
    top: 5px;
    left: 35px;
    cursor: text;
    background-color: white;
    transition:  all 0.3s ease-in-out;
    color: gray;
    font-size: 15px;
    border-radius: 8px;
    padding-inline: 2px;
    pointer-events: none;
}

.input:focus ~ .label,
.input:not(:focus):valid ~ .label{
    top: -20px;
    left: 15px;
    pointer-events: none;
    color: #000;
    /* background-color: #B1C9EF; */
    font-weight: bold;
}
.password_eye{
    position: absolute;
    top: 8px;
    right: 15px;
}
.credentials_icons{
    position: absolute;
    top: 12px;
    left: 15px;
}
/* Register */
#register_page{
    overflow: scroll;
    padding-inline: 10px;
    padding-block: 15px;
}
/* HOME */
.activities_wrapper{
  background-color: var(--primaryColor);
  border-radius: var(--mainBorderRadius);
}
/* MAIN */
.section_header{
    background-color: var(--primaryColor); 
    border-radius: var(--mainBorderRadius) var(--mainBorderRadius) 0 0;
}
.user_picture:not(:first-child){
  margin-left: -20px;
}
.separator{
    border: 2px solid var(--hover);
    border-radius: var(--mainBorderRadius);
    pointer-events: none;
}
/* MAIN */
/* SIDEBAR */
#sidebar{
    position: fixed;
} 
#sidebar_header{
    position: absolute;
    top: 1rem;
    margin-bottom: 16px;
    display: flex;
}
#logo_img{
    width: 32px;
}

/* SIDEBAR */
#comunication{
    background-color: var(--primaryColor);
    border-radius: var(--mainBorderRadius);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
 #notification_button{
    background-color: var(--primaryColor);
    position: absolute;
    right: -2%;
    top: -3%;
    text-align: center;
} 
 .news_wrapper{
  max-width: 1100px;
  width: 100%;
  position: relative;
 }

 .news_wrapper .carousel .news_paper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin: auto;
    color: #ffffffcc;
  }
.comunication_text{
    display: -webkit-box; 
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;  
    font-family: 'gambetta';
    font-weight: bold;
    line-height: 1.3rem;
    margin: auto;
    text-align: center;
    overflow: hidden;
    max-lines: 4;
    overflow-wrap: break-word;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    position: relative;
}
.comunication_time{
    background-color: #356B8C;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 8px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0%;
}
.comunication_time span{
    display: flex;
    align-items: center;
    justify-content: center;
}
.comunication_readAll{
    height: 40px;
    width: fit-content;
    margin-top: 1rem;
    margin-inline: auto;
}
.comunication_readAll a{
    color: #ffffffcc;
    font-weight: bold;
    padding-block: 5px;
    padding-left: 10px;
    padding-right: 30px;
    border-radius: var(--mainBorderRadius);
    position: relative;
    transition: all 0.2s ease;
}
.comunication_readAll a:hover{
    text-decoration: underline;
}
.comunication_readAll a i{
    position: absolute;
    left: 80%; 
    top: 50%;
    transform: translateY(-50%);
    opacity: 0; 
    animation: slideArrow 2s infinite forwards, fadeIn 2s infinite forwards;
}
#underline_title{
  border: 1px solid var(--hover);
  margin-top: 5px;
  margin-inline: auto;
  width: 90%;
}
/* PENDING WORK */

.pending_cases_wrapper{
    width: 100%;
    position: relative;

  }

  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .image_logo){
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .carousel .card a{
    scroll-snap-align: start;
    height: 130px;
    list-style: none;
    cursor: pointer;
    /* padding: 5px; */
    display: flex;
    flex-direction: column;
    /* column-gap: 5px; */
    text-align: center;
    position: relative;
  }
  .news_wrapper .carousel .news_paper .wrapper{
    scroll-snap-align: start;
    width: 100%;
  }
  .case_deatails{
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    height: 100%;
    justify-content: space-between;
  }
  .case_deatails div{
    display: -webkit-box; 
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;  
    font-weight: lighter;
    overflow: hidden;
    overflow-wrap: break-word;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-lines: 2;
  }
  .carousel .card .image_logo {
    height: 50px;
    width: 50px;
    border-radius: var(--mainBorderRadius);
   margin-inline: auto;
  }
  .card .image_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .carousel .card p {
    line-height: 20px;
    color: #ffffffcc;
    padding-inline: 4px;
  }
  .carousel .card span {
    color: #6A6D78;
  }
  @media screen and (max-width: 900px) {
    .card{
      width: 250px;
      padding-inline: 5px;
      padding-block: 10px;
      background: var(--primaryColor);
      border-radius: 8px;
    }
    .action-button--horizontal-scroll{
      opacity: 0;
    }
  }
/* PENDING WORK */
/* PENDING WORK DETAILS */
#downloads_file_button, #update_button{
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: var(--mainBlue); */
  padding: 8px 10px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  height: fit-content;
}
.assigned_to_profile{
  position: relative;
}
.actions_button button{
  font-size: 22px;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.element_tooltip_container{
  position: relative;
  display: flex;
}
.tooltip {
  display: none;
  background-color: #ffffffcc;
  color: #1b1919;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  padding: 0.2rem 0.25rem;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  font-size: 14px;
  transition: all ease-in-out 0.5s;
}
.tooltip::after {
  content: "";
  position: absolute;
  border-width: 5px;
  border-style: solid;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-color: #ffffffcc transparent transparent transparent;
}
.element_tooltip_container:hover .tooltip {
  display: flex;
  opacity: 1;
}
.text-header{
  font-size: 18px;
  color: #ffffffcc;
  font-weight: bold;
  text-transform: capitalize;
  text-decoration: underline;
  margin-bottom: 1.5rem;
  text-align: center;
}
button.cancel{
  font-weight: bold;
  background-color: #ffffffcc;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  color: #1b1919 !important;
  cursor: pointer;
}
#submit_case_wrapper button:not(.cancel){
  font-weight: bold;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}
#upload_files,#show_files_to_edit{
  position: relative;
}
button#go_back{
  position: absolute;
  left: -10%;
  top: -10%;
  color: #ffffffcc;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-decoration: underline;
}
button#go_back:hover{
  background-color: var(--hover);
}
#upload_update_dialog{
  background-color: var(--secondaryColor);
}
.noMedia{
  opacity: 0.5;
  cursor: not-allowed !important ;
}
.doc_thumnail{
  width: 90px;
  height: 100px;
  position: relative;
}
.doc_thumnail img{
  object-fit: contain;
  width: 100%;
}
.doc_thumnail_filename h1{
  font-size: 14px;
  line-height: 1rem;
  color: #ffffffcc;
  text-align: center;
  display: -webkit-box; 
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;  
  overflow: hidden;
  max-lines: 3;
  overflow-wrap: break-word;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  position: relative;
}
.doc_actions_wrapper{
  height: max-content;
  position: relative;
}
.doc_actions_wrapper:hover .doc_actions{
  display: block;
}
.doc_actions{
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  border: none;
  background-color: var(--hover);
  border-radius: 4px;
  padding: 2px;
}
.doc_actions div{
  display: flex;
  column-gap: 10px;
  width: fit-content;
  margin-left: auto;
}
.doc_actions a, .doc_actions button{
  color: #fff;
  padding: 0.25rem;
  background-color: rgb(136, 133, 133);
  border-radius: 4px;
  font-size: 16px;
}
#upload_update_dialog #update_choice_wrapper button{
  border-radius: var(--mainBorderRadius);
  padding: 15px 5px;
  background-color: #ffffffcc;
}
#upload_update_dialog #update_choice_wrapper button h1{
  line-height: 1rem;
}
textarea{
  resize: none;
}
#upload_update_dialog form button{
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-weight: bold;
  color: #fff;
}

#case_updates_wrapper{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: scroll;
}
.update_separator{
  width: 150px;
  border: 1px solid var(--hover);
  margin-block: 8px;
  margin-inline: auto;
}
button.disabled{
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}
button:disabled{
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}
#submit_case_wrapper{
  background-color: var(--secondaryColor);
}
.case_details_wrapper{
  position: relative;
}
#case_status_submitted, #case_status_pending{
  background-color: rgba(233, 44, 44,0.2);
  color: rgb(233, 44, 44);
  font-size: 14px;
  height: fit-content;
  border-radius: 4px;
}
#case_status_pending{
  width: fit-content;
  padding-inline: 0.75rem; /* equivalent to px-3 */
  padding-block: 0.25rem; /* equivalent to py-1 */
  border-radius: 16px;
  text-transform: capitalize;
  background-color: rgba(255, 222, 77, 0.7); /* equivalent to bg-[#ffde4db3] */
  display: flex;
  align-items: center;
  gap: 0.25rem; /* equivalent to gap-x-1 */
  color: #fff;
}
#assigned_user_wrapper{
  position: absolute;
  right: 10%;
  top: 2%;
}
.workspace_message_box_wrapper{
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.auto_expand_textarea{
  width: 100%;
  min-height: 20px;
  box-sizing: border-box;
  resize: none !important;  /* Disable manual resizing */
  overflow: hidden; /* Hide scrollbar */
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
}
.upload_file_name{
  display: inline-block; /* or block, depends on your layout */
  max-width: 100%; /* adjust if needed */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.workspace_tools_wrapper{
  padding: 0.5rem;
  background-color: var(--secondaryColor);
  color: #fff;
  border-bottom: 1px solid hsl(237, 14%, 26%);
  transition: all ease-in-out 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  &:hover{
    transform: scale(1.01);
  }
}
.workspace_tools_wrapper h1{
  font-weight: bold;
  font-size: 15px;
}
.workspace_tools_wrapper span{
  width: 20px !important;
  height: 20px !important;
  border-radius: 100% !important;
  text-align: center;
  background-color: var(--hover);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workspace_tabs_header{
  color: #fff;
  background-color: var(--mainBlueHover);
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.workspace_tabs_header h1{
  font-weight: bold;
  font-size: 15px;
  text-align: center;
}
.workspace_tabs_content_wrapper{
  position: relative;
}
.workspace_box_shadow{
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
/* PENDING WORK DETAILS */
/* USER PROFILE */
/* HOME */
/* TODO LIST*/
.todo_wrapper_tabs{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  width: 100%;
  transition: all ease-in-out 0.2s;
  border-radius: 4px;
}
.todo_wrapper_tabs div{
  display: flex;
  justify-content: left;
  align-items: center;
  column-gap: 5px;
}
.todo_wrapper_tabs span{
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.todo_wrapper_tabs_list{
  box-shadow:  var(--hover) 3px 0 5px -5px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.todo_wrapper_tabs i {
  font-size: 18px;
}
.todo_wrapper_tabs:hover{
  cursor: pointer;
}
.active_tab{
  background-color: var(--hover);
}
.active_tab_dark{
  background-color: "#d1d1d1";
}
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}
.add_task{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  border: 2px solid #fff;
  opacity: 0.5;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.add_task:hover{
  border: 2px solid var(--actionColor);
  color: var(--actionColor);
}
.addTaskInput{
  padding: 10px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  transition: all .25s ease;
  transition-property: box-shadow, transform, border-color;
  border-radius: 4px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 15px) ;
  margin-inline: auto;
}
.addTaskInput .todo_text{
  width: 100%;
}
.addTaskInput #new_task{
  height: 100%;
  width: 100%;
}
.addTaskInput #new_task:focus{
  outline: none;
}
@keyframes taskInputDisplay {
  0%{
      width: 10px !important;
  }

  100%{
    width: 700px !important;

  }
}
.displayInput{
  display: block !important;
  animation: taskInputDisplay ease-in-out 1s forwards;
  width: 700px;
}

::selection{
    color: #fff;
    background: #3C87FF;
  }


  .task_containings_wrapper{
    background-color: hsl(0, 0%, 100%);
    display: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    animation: taskSlideDown 0.7s ease-in;
  } 
  .filters span{
    font-size: 16px;
    color: #444444;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
  }
  .filters span:first-child{
    margin-left: 0;
  }
  .filters span.active{
    color: #3C87FF;
  }
  textarea {
    resize: none;
  }
  @media (max-width: 400px) {
    body{
      padding: 0 10px;
    }
    .wrapper {
      padding: 20px 0;
    }
    .filters span{
      margin: 0 5px;
    }
   
    .task-box{
      margin-top: 20px;
      margin-right: 5px;
      padding: 0 15px 10px 20px;
    }
    .task label input{
      margin-top: 4px;
    }
  }
/* TODO LIST */
.action_button{
  background-color: var(--actionColor);
  transition: all 0.2s ease-in-out;
}
.action_button:hover{
  background-color: var(--actionColorHover);
}
/* CALENDAR */
#calendar_events{
  height: 350px;
  padding: 5px;
  border-radius: var(--mainBorderRadius);
  background-color: var(--primaryColor);
  color: #ffffffcc;
}
#events_wrapper{
  position: relative;
}
.events_container{
  border-bottom: 2px solid hsl(237, 14%, 26%);
  cursor: pointer;
  transition: all .25s ease;
}
.events_container:hover{
  transform: scale(1.01);
}
#events_wrapper #events_container{
  position: relative;
  height: 100%;
  width: 500px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
#events_wrapper::before{
  content: "";
  background: linear-gradient(#fff0,#292424);
  position: absolute;
  bottom: 0;
  height: 40px;
  z-index: 5;
  width: 100%;
  pointer-events: none;
}
.events_wrapper{
  position: relative;
  padding-left: 10px;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
#availability_list{
  overflow-y: scroll;
}
.events_wrapper:hover{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.events_wrapper p {
  font-size: 14px;
}
.badge_grey{
  border: solid 1px transparent;
  background-color: rgba(128, 128, 128,0.4);
  padding: 5px;
  border-radius: var(--mainBorderRadius);
  opacity: 0.6;
  transition: all ease-in-out 0.2s;
  display: flex;
  align-items: center;
  column-gap: 2px;
  font-size: 14px;
}
.badge_grey:hover{
  border: solid 1px white;
  opacity: 1;
}
.event_divider{
  position: absolute;
  left: 0;
  height: 100%;
  inset-block: 0;
  width: 4px;
  background-color: var(--actionColor);
  opacity: 0.6;
  border-radius: var(--mainBorderRadius);
}
#create_event_button_wrapper{
  position: absolute;
  top: -3%;
  right: 2%;
  z-index: 10;
  transition: all ease-in-out 0.2s;
}
#events_wrapper:hover #create_event_button_wrapper{
  display: block;
}
#create_event_button{
  width: 100%;
  border-radius: var(--mainBorderRadius);
  font-weight: bold;
}
#new-event-modal .new-event-modal-wrapper{
  background-color: var(--primaryColor);
}
.event_title_input{
  border: solid 1px #ffffff66;
  border-radius: 4px;
  padding-left: 10px;
  padding-block: 7px;
  transition: all ease-in-out 0.2s;
  /* width: 500px !important; */
  width: 100%;
}
.event_title_input:focus{
  box-shadow: 0 0 3px 2px var(--mainBlue);
}
.short_input{
  border: solid 1px #ffffff66;
  border-radius: 4px;
  padding-left: 10px;
  padding-block: 7px;
  transition: all ease-in-out 0.2s;
}
.short_input:focus{
  box-shadow: 0 0 3px 2px var(--mainBlue);
}
.custome_input{
  border: solid 1px #ffffff66;
  border-radius: 4px;
  padding-left: 10px;
  padding-block: 7px;
  transition: all ease-in-out 0.2s;
}
.custome_input:focus{
  box-shadow: 0 0 3px 2px var(--mainBlue);
}
.custome_input:focus-within{
  box-shadow: 0 0 3px 2px var(--mainBlue);
}
.participants_input{
  transition: all ease-in-out 0.2s;
}
.event_title_input:focus-within {
  box-shadow: 0 0 3px 2px var(--mainBlue);
}
.event_icons{
  position: absolute;
  top: 10px;
  left: 0px;
  color: #fff;
}
#participants_badges_wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
.event_reminder_trigger:hover{
  background-color: #b1afaf80;
}
.event_time_options{
  height: 200px;
  overflow-y: scroll;
  z-index: 10;
}
.event_time_options span {
  display: block;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 0.875rem; /* 14px */
  padding-top: 0.5rem; /* 8px */
  padding-bottom: 0.5rem; /* 8px */
  padding-left: 0.75rem; /* 12px */
  padding-right: 0.75rem; /* 12px */
  border-radius: 0.5rem; /* 8px */
  font-size: 0.875rem; /* 14px */
  outline: none;
}

.event_time_options span:hover {
  background-color: #f7fafc; /* gray-100 */
}

.event_time_options span:focus {
  background-color: #f7fafc; /* gray-100 */
}

textarea{
  resize: none;
}
.icons{
  padding: 7px 10px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.icons:hover{
  background-color: var(--hover);
}
.calendar_icons{
  width: 150px;
  height: 150px;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
  position: relative;
}
.calendar_icons img, .calendar_icons h1{
  opacity: 0.5;
}
.calendar_icons p{
  color: #fff !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.calendar_icons:hover{
  transform: scale(1.05);
}
.calendar_icons img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#open_calendar_button{
  padding: 5px 10px;
  border-radius: 4px;
}
#open_calendar_button:hover{
  background-color: var(--hover);

}
/* multiple select */
.custom-select {
  position: relative;
  user-select: none;
}
.options {
  position: absolute;
  top: 103%;
  left: 0;
  right: 0;
  border-top: none;
  max-height: 150px;
  transition: all 0.2s ease-in-out;
  z-index: 1000;
}
.participants{
  /* background-color: rgba(53, 107, 140,0.5); */
  padding: 5px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  column-gap: 5px;
  width: fit-content;
}
.participants span:last-child{
  font-weight: bold;
  cursor: pointer;
}

.option {
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
}

.option img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  object-fit: contain;
}
/* multiple select */
/* CALENDAR */
/* Register */
/* TO DO LIST */
.todo_items{
  /* padding-inline: 10px; */
  display: flex;
  flex-direction: column;
  row-gap: 1px;
  height: calc(100% - 60px);
}
.todolist_tabs_content_wrapper{
  position: relative;
}
.todo_item{
  padding: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  transition: all .25s ease;
  transition-property: box-shadow, transform, border-color;
  border-radius: 4px;
}
.todo_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0px 7px 0px hsl(235, 21%, 11%);
}
.todo_text{
  font-size: 14px;
}
.todo_text.completed span{
  opacity: 0.6;
  text-decoration: line-through;
}
.check_mark {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: all 0.25s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.check_mark img {
  visibility: hidden;
}
.check_mark.checked img, .todo_item:hover img {
  visibility: visible;
}

.check_mark:hover {
  border-color: linear-gradient(135deg, #55DDFF 0%, #C058F3 100%);
  background: linear-gradient(135deg, #55DDFF 0%, #C058F3 100%);   
}

.check_mark.checked {
  background-color: pink;
  background: linear-gradient(135deg, #55DDFF 0%, #C058F3 100%); 
  border: none;  
}
#todo_wrapper{
  width: 100%;
  height: 450px;
  border-radius: 7px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.todo_list_wrapper{
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.todo_list_wrapper h1{
  font-size: 21px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #fff;
  text-transform: capitalize;
}
.todolist_accordion_trigger{
  width: 150px;
  transition: all .25s ease;
  transition-property: box-shadow, transform, border-color;
  border-radius: 4px;
  margin-block: 8px;
}
/* TO DO LIST */
/* My Folders */
.dashboard_boxes{
  width: 400px;
  height: 100px;
  background-color:var(--primaryColor);
  color: #ffffffcc;
  font-weight: bold;
}
.status_wrapper h1{
  border-radius: var(--mainBorderRadius);
  padding: 0.15rem 0.6rem;
  font-weight: bold;
  backdrop-filter: blur(20px);
}

.dt-layout-row:has(.dt-search),
.dt-layout-row:has(.dt-length),
.dt-scroll-body thead,
.dt-layout-row:has(.dt-paging) {
  display: none !important;
}

/* .table tr{
  border-bottom: 1px solid #ffffff66;
} */
/* My Folders*/

.apps{
  box-shadow: rgba(100, 105, 109, 0.3) 0px 1px 2px 0px, rgba(109, 115, 119, 0.15) 0px 2px 6px 2px;
}
/* CLIENTS */
.search_input_div{
  width: fit-content;
  position: relative;
}
.search_input_div input,.inputTypeTwo{
  border: 1px solid #8AAEE0;
    border-radius: 8px;
    padding: 6px 15px;
    padding-left: 30px;
}
.client_create_form{
  position: relative;
}
.client_create_form label{
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  /* margin-bottom: 40px !important; */
}
.client_create_form h1{
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  margin: 20px;
}
.inputTypeTwo,textarea{
  background-color: var(--secondaryColor);
  padding-left: 40px;
  color: #fff;
}
textarea{
  padding-left: 5px !important;
  border-radius: 8px;
  color: #fff;
}
.filepond--drop-label {
  color: var(--primaryColor);
}
.filepond--file-action-button {
  cursor: pointer;
}
.inputTypeTwo::placeholder{
  font-weight: bold;
  font-size: 15px;
}
.inputTypeTwo + i{
  color: white;
  /* font-size: 15px; */
}
.search_input_div input:focus{
  border: 2px solid #8AAEE0;
  box-shadow: none;
  outline: none;
}
.search_input_div i{
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
}
.create_button{
  background-color: var(--mainBlue);
  color: #fff;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 15px;
  box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px;
}
.create_button:hover{
  transform: scale(1.03);
}
.client_wrapper{
  width: 220px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px;
  transition: all 0.2s ease-in-out;
}
.client_wrapper:hover{
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}
.client_logo_wrapper{
  height: 100px;
}
.client_wrapper h1{
  display: -webkit-box; 
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;  
    font-weight: bold;
    color: #fff;
    margin: auto;
    text-align: center;
    overflow: hidden;
    max-lines: 2;
    overflow-wrap: break-word;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    position: relative;
}
#create-client_dialog section, #create-case_dialog section{
  background-color: var(--secondaryColor);
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}
#create-case_dialog section label{
  color: #fff;
}
.client_detials h1, .client_detials a{
  color: #fff;
  font-weight: bold;
}
.client_detials a:hover{
  text-decoration: underline;
}
.client_detials p{
  color: #fff;
  font-size: 15px;
}
/* CLIENTS */


/* Calendar */
.calendar_container {
  position: relative;
  width: 1200px;
  min-height: 850px;
  margin: 0 auto;
  padding: 5px;
  color: #fff;
  display: flex;

  border-radius: 10px;
  background-color: var(--secondaryColor)
}
.add-event
.calendar {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #878895;
  border-radius: 5px;
  background-color: rgb(49, 49, 49);
}
/* set after behind the main element */
.calendar .days .day:hover.event::after {
  background-color: #fff;
}
.calendar .days .active.event::after {
  background-color: #fff;
  bottom: 20%;
}
.calendar .days .active.event {
  padding-bottom: 10px;
}
.calendar .goto-today {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 0 20px;
  margin-bottom: 20px;
  color: var(--actionColor);
}
.calendar .goto-today .goto {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--primary-clr);
}
.calendar .goto-today .goto input {
  width: 100%;
  height: 30px;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  color: var(--primary-clr);
  border-radius: 5px;
}
.calendar .goto-today button {
  padding: 5px 10px;
  border: 1px solid var(--actionColor);
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  color: var(--actionColor);
}
.calendar .goto-today button:hover {
  color: #fff;
  background-color:var(--actionColor);
}
.calendar .goto-today .goto button {
  border: none;
  border-left: 1px solid var(--primary-clr);
  border-radius: 0;
}
.calendar_container .right {
  position: relative;
  width: 40%;
  min-height: 100%;
  padding: 20px 0;
}

.right .today-date {
  width: 100%;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  padding-left: 70px;
  margin-top: 50px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.right .today-date .event-day {
  font-size: 2rem;
  font-weight: 500;
}
.right .today-date .event-date {
  font-size: 1rem;
  font-weight: 400;
  color: #878895;
}
.events {
  width: 100%;
  height: 100%;
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding-left: 4px;
}
.events .event {
  position: relative;
  width: 95%;
  min-height: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
  padding-left: 50px;
  color: #fff;
  background: linear-gradient(90deg, #3f4458, transparent);
  cursor: pointer;
}
/* even event */
.events .event:nth-child(even) {
  background: transparent;
}
.events .event:hover {
  background: linear-gradient(90deg, var(--primary-clr), transparent);
}
.events .event .title {
  display: flex;
  align-items: center;
  pointer-events: none;
}
.events .event .title .event-title {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 20px;
}
.events .event i {
  color: var(--primary-clr);
  font-size: 0.5rem;
}
.events .event:hover i {
  color: #fff;
}
.events .event .event-time {
  font-size: 0.8rem;
  font-weight: 400;
  color: #878895;
  margin-left: 15px;
  pointer-events: none;
}
.events .event:hover .event-time {
  color: #fff;
}
/* add tick in event after */
.events .event::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 3rem;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  color: var(--primary-clr);
  transform: translateY(-50%);
}
.events .event:hover::after {
  display: flex;
}
.add-event {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  border: 2px solid #fff;
  opacity: 0.5;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition:  all ease-in-out 0.2s;
}
.add-event:hover {
  border: 2px solid var(--actionColor);
  color: var(--actionColor);

}
.add-event i {
  pointer-events: none;
}
 .no-event {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin: auto;
}
.add-event-wrapper {
  position: absolute;
  bottom: 100px;
  left: 50%;
  width: 90%;
  max-height: 0;
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
  transform: translateX(-50%);
  transition: max-height 0.5s ease;
}
.add-event-wrapper.active {
  max-height: 300px;
}
.add-event-header {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #373c4f;
  border-bottom: 1px solid #f5f5f5;
}
.add-event-header .close {
  font-size: 1.5rem;
  cursor: pointer;
}
.add-event-header .close:hover {
  color: var(--primary-clr);
}
.add-event-header .title {
  font-size: 1.2rem;
  font-weight: 500;
}
.add-event-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}
.add-event-body .add-event-input {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.add-event-body .add-event-input input {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #f5f5f5;
  padding: 0 10px;
  font-size: 1rem;
  font-weight: 400;
  color: #373c4f;
}
.add-event-body .add-event-input input::placeholder {
  color: #a5a5a5;
}
.add-event-body .add-event-input input:focus {
  border-bottom: 1px solid var(--primary-clr);
}
.add-event-body .add-event-input input:focus::placeholder {
  color: var(--primary-clr);
}
.add-event-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
color: var(--actionColor);
}

.bounceEffect {
  transition: transform 0.3s ease-in-out;
}

.bounceEffect:hover {
  transform: scale(1.02);
}
.filepond--root {
  background-color: var(--primaryColor) !important;
  border-radius: 4px;
}
.filepond--drop-label {
  background-color: var(--primaryColor);
  border-radius: 4px;
  color: var(--textColor) !important; /* Text color */
}
.filepond--list-scroller {
  background-color: var(--primaryColor) !important;
}
.filepond--panel-root {
  background-color: var(--primaryColor) !important;
  border-radius: 4px;
}
.filepond--list {
  background-color: var(--primaryColor) !important;
}


/* EMmail */

/* media queries */

@media screen and (max-width: 1000px) {
  body {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .calendar_container {
    min-height: 100vh;
    flex-direction: column;
    border-radius: 0;
  }
  .calendar_container .left {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  .calendar_container .right {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  .calendar::before,
  .calendar::after {
    top: 100%;
    left: 50%;
    width: 97%;
    height: 12px;
    border-radius: 0 0 5px 5px;
    transform: translateX(-50%);
  }
  .calendar::before {
    width: 94%;
    top: calc(100% + 12px);
  }
  .events {
    padding-bottom: 340px;
  }
  .add-event-wrapper {
    bottom: 100px;
  }
}
@media screen and (max-width: 500px) {
  .calendar .month {
    height: 75px;
  }
  .calendar .weekdays {
    height: 50px;
  }
  .calendar .days .day {
    height: 40px;
    font-size: 0.8rem;
  }
  .calendar .days .day.active,
  .calendar .days .day.today {
    font-size: 1rem;
  }
  .right .today-date {
    padding: 20px;
  }
}
/* Calendar */
/* DASHBOARD */

/* Library */ 
.scroll-list-container {
  position: relative;
  width: 500px;
}

.scroll-list {
  max-height: 400px;
  overflow-y: auto;
  padding: 16px;
}

.scroll-list::-webkit-scrollbar {
  width: 8px;
}

.scroll-list::-webkit-scrollbar-track {
  background: #060606;
}

.scroll-list::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.item {
  padding: 16px;
  background-color: #111;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.item.selected {
  background-color: #222;
}

.item-text {
  color: white;
  margin: 0;
}

.top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, #060606, transparent);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #060606, transparent);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes slideArrow {
    0% {
        left: 10px; /* Start position */
    }
    100% {
        left: calc(100% - 30px); /* End position */
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0; /* Start opacity */
    }
    100% {
        opacity: 1; /* End opacity */
    }
}
@media(max-width: 1023px){
.overlay{
    background:  rgba(0, 0, 0,0.5);
    opacity: 0.6;
    position: absolute;
    inset: 0;
    z-index: -2;
}
.label{
    top: 7px;
}
}

@media only screen and (max-width: 900px) {
  #create_event_button_wrapper{
    position: absolute;
    right: 50;
    width: 100%;
    transform: translateX(-50%);
    z-index: 10;
    display: block;
    transition: all ease-in-out 0.2s;
    top: 90%;
  }
  #events_wrapper{
    position: relative;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    column-gap: 10px;
  }
  #events_wrapper #events_container{
    position: relative;
    height: 100%;
    width: 300px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }
}

