body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

footer{
    text-align: center;
}

/* Modal styling */
/* Shared close button */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

/* === Standard Modal === */
.modal {
    position: fixed;
    display: none;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    max-width: 500px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* === Fullscreen Modal === */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fullscreen-modal-content {
    /* background-color: #fff; */
    padding: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* TODO:: move */

body.overlay-visible{
	overflow: hidden;
}


.mn-overlay {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--body-overlay-back, #fff);
    z-index: 1001;
}

.mn-overlay.visible {
    display: flex;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100vh;
}

.overlay-logo img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
}

.overlay-version abbr {
    color: var(--body-overlay-color, #ccc);
    font-size: small;
    margin-bottom: 20px;
}

.overlay-loader img {
    margin-bottom: 20px;
}

.overlay-message .message {
    color: var(--body-overlay-color, #ccc);
    font-size: small;
}

body > .mn-overlay.active{
  height:100vh;
  overflow: hidden;
}

.sticky-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    align-self: flex-start;
    background-color: #fff;
    z-index: 1000;
}

.brand-name{
    padding-right: 5px;
}

/*.badge:not([data-count]),        /* missing */
/*.badge[data-count="0"],          /* zero */
.badge:empty {                   /* empty */
    display: none;
}


.sticky-70 {
  position: sticky;
  top: 70px;
  z-index: 101;
}