/* :root {

    --content-background-color: black;

    --ng-popup-content-paragraph-font: 'Road Rage';
    --close-color: black;
    --yellow: #FCAB27;
    --yellow-hover: #ff9d00;
}


.ng-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ng-popup-content {
    background: var(--content-background-color);
    padding: 1rem;
    border-radius: 8px;
    max-width: 750px;
    width: 95%;
    max-height: 90%;
    overflow: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
}

.ng-popup-content p {
    font-family: var(--ng-popup-content-paragraph-font);
}

.ng-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: var(--yellow);
    color: var(--close-color);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}
.ng-popup-close:hover {
    background: var(--yellow-hover);
} */

:root {
  --content-background-color: black;
  --ng-popup-content-paragraph-font: 'Road Rage';
  --close-color: black;
  --yellow: #FCAB27;
  --yellow-hover: #ff9d00;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

.ng-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ng-popup-wrapper[hidden] {
  display: none;
}

.ng-popup-wrapper.open {
  opacity: 1;
}

.ng-popup-content {
  background: var(--content-background-color);
  padding: 1rem;
  border-radius: 8px;
  max-width: 750px;
  width: 95%;
  max-height: 90%;
  overflow: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

.ng-popup-content p {
  font-family: var(--ng-popup-content-paragraph-font);
}

.ng-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--yellow);
  color: var(--close-color);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 400;
}

.ng-popup-close:hover,
.ng-popup-close:focus {
  background: var(--yellow-hover);
  outline: 3px solid white;
  font-weight: 600;
}

