.hidden{
    display: none;
}

#popup {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.45);
}

#popup.hidden {
  display: none;
}

#popup .popup-dialog {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}

#popup .popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #dee2e6;
}

#popup .popup-title {
  font-size: 1.25rem;
}

#popup .popup-close {
  flex-shrink: 0;
  line-height: 1;
}

#popup .popup-content {
  padding: 1.25rem;
  overflow-y: auto;
}

/* medium and up */
@media (min-width: 768px) {
  #popup .popup-dialog {
    width: 60%;
  }
}

.card-body .btn{
    margin-top: 7px;
    text-wrap: auto;
}

.font-small{
    font-size: small;
}