.access-denied-popup .popup-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.access-denied-popup button {
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 100px; /* same button width */
  height: 40px; /* same button height */
}

.access-denied-popup button:hover {
  background: #005d8a;
}
#ajvi-access-popup,
.access-denied-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.access-denied-con a {
    background: #2d419b;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}
.access-denied-con a:hover {
    background: #00afef;
}