@media (min-width: 768px) {
  .force-quarter {
  width: 25% !important;
  max-width: 25% !important;
  flex: 0 0 25% !important;
  }
  .force-three-quarters {
  width: 75% !important;
  max-width: 75% !important;
  flex: 0 0 75% !important;
  }
}

.custom-modal-overlay {
  display: none; 
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.custom-modal-overlay.is-active {
  display: flex !important;
}

.modal-body-fullscreen {
  position: relative;
  width: 100% !important;
  height: calc(90vh - 61px); 
  background-color: #ffffff;
}

.publications-scrollable {
  max-height: 55rem;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.publications-scrollable::-webkit-scrollbar {
  width: 8px;
}

.publications-scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.publications-scrollable::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 999px;
}