.appointed{
  cursor: pointer;
  color: #303030
}

.requesting{
  background-color: #FFCCCC;
  color: #303030;
  cursor: pointer;
}

.allAppointmentButton:hover {
  background-color: #82aeff6b;
  cursor: pointer;
}

ul.appoint_list {
  padding-left: 40px;
}
ul.appoint_list li {
  text-align: left;
  cursor:pointer;
}
ul.appoint_list li:hover {
  background-color: #FFDDDD;
}

.appointed:hover, .client_list_item:hover{
  background-color: #DDDDDD;
  cursor: pointer;
}

.requesting:hover {
  background-color: #FFCCCC;
  cursor: pointer;
}

.day-label{
  position: absolute;
  right: 3px;
}

.main .workday{
  text-align: center;
}

.main .sunday{
  text-align: center;
  color: #FF0000;
}

.main .saturday{
  text-align: center;
  color: #0000FF;
}

.main .currentDay{
  height: 100px;
  width: 14%;
  color: #707070;
}

.main .notCurrentDay{
  height: 100px;
  width: 14%;
  color: #D0D0D0;
}

.error_message {
  color: #FF0000;
  font-size: 10px;
  margin-bottom: 0px;
}

.edit-modal{
  margin-bottom: 0;
  bottom: 0;
  right: 0; 
  position: fixed;
  width: 120%
}

.badge {
  vertical-align: middle;
}

.appoint_calendar .notCurrentDay{
  color: #A0A0A0
}

.modal-body {
  margin: auto;
  width: 100%;
}

.appoint-confirm-modal{
  margin-bottom: 0;
  bottom: 0;
  right: 0; 
  position: fixed;
  width:35%
}

.shared-toast{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.meeting-url-box{
  display: flex; 
  border-radius: 5px; 
  border: 1px solid; 
  align-items: center;
  width: 100%;
}

.meeting-url-box input {
  overflow-x: scroll; 
  scrollbar-width: none; 
  overflow-y: hidden; 
  white-space: nowrap;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  width: 90%;
  border:0;
  outline:0;
  margin: 1px;
  cursor: pointer;
}

.meeting-url-box input:focus {
  outline: none;
}

.meeting-url-box i {
  padding: 5px;
  min-width: 50px; 
  text-align: center; 
  border-left: 1px solid; 
  cursor: pointer;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.meeting-url-box input::-webkit-scrollbar {
  display: none;
}

.detail-modal-alignments{
  display: flex; 
  justify-items: start
}

@media (max-width: 992px) {
  .container{
    max-width: 100%;
    margin: 0px;
  }

  .modal-dialog-fluid {
    max-width: inherit;
    width: 100%;
    font-size: large;
  }

  #detailModal .modal-body {
    width: 60%;
    font-size: large;
  }

  .error_message {
    margin-left: 3%;
    color: red;
    font-size: 0.9rem;
  }

  input[name="f_client"]{
    font-size: 0.9rem;
  }

  .form-control{
    height: calc(1.6em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
}

.form-control-plaintext {
  outline: none;
}