.inactivity-btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  color: white;
  margin-right: 10px;
  transition: background 0.3s;
}

.inactivity-btn-continue {
  background-color: #007bff;
}
.inactivity-btn-continue:hover {
  background-color: #045aaa;
}

.inactivity-btn-logout {
  background-color: gray;
}
.inactivity-btn-logout:hover {
  background-color: rgb(99, 98, 98);
}

.inactivity-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  width: fit-content;
  background: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.modal-content > .modal-footer{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
