  /* Style for the lightbox effect */
  .re-login-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darkened background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's above other content */
  }
  
  /* Style for the pop-up modal */
  .re-login-modal {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    padding: 20px;
  }
  
  /* Style for the modal content */
  .modal-content {
    text-align: center;
  }
  
  /* Style for the logout button */
  #logout-btn {
    background-color: #007bff; /* Blue button color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #logout-btn:hover {
    background-color: #0056b3; /* Hover color */
  }
  