.page-loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s .2s ease-in-out;
    transition: all .4s .2s ease-in-out;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
  }
  .page-loading.active {
    opacity: 1;
    visibility: visible;
  }
  .page-loading-inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    opacity: 0;
  }
  .page-loading.active > .page-loading-inner {
    opacity: 1;
  }
  .page-loading-inner > span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: #666276;;
  }
  .page-spinner {
    display: inline-block;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: .75rem;
    vertical-align: text-bottom;
    border: .15em solid #bbb7c5;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
  }
  @-webkit-keyframes spinner {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spinner {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
/* custom */
  .grayed-out {
    opacity: 0.3; /* Adjust the opacity value to your preference */
  }
  
  /*for read messages*/

  .vertical-line {
    border-left: 6px solid rgb(255, 100, 0);
  }


  /* for neutral profile info */
  #account-link{
    display: block;
    height: 100px;
    margin-top: -100px;
    visibility: hidden;
    }
  
    #profile-link{
    display: block;
    height: 100px; /*same height as header*/
    margin-top: -100px; /*same height as header*/
    visibility: hidden;
    }
  
    #additional-options-link{
    display: block;
    height: 100px; /*same height as header*/
    margin-top: -100px; /*same height as header*/
    visibility: hidden;
    }


/* neutral profile */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#warning-message {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  text-align: center;
  width: 1000px; /* set the width of the warning message box */
  height: 325px; /* set the height of the warning message box */
}

#warning-message p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* profile info reported */
.reported-warning {
  color: red;
  font-size: 15px;
}

.blurred-text {
  filter: blur(5px);
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

/* profile info contact form blur */
.contact-form-blur {
  filter: blur(5px);
  pointer-events: none;
}

  .contact-form-container {
      position: relative;
  }
  .login-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  pointer-events: auto;
}


/* .reported-warning {
  color: red;
  font-size: 15px;
  }
  
  .blurred-text {
  filter: blur(5px);
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  } */