.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: all;
}

.spinner {
    border: 6px solid #e0e0e0;
    border-top: 6px solid #4caf50;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.modal-section {
    display: inline-block;
    width: 100%;
}

.modal-section label {
    display: inline-block;
    font-weight: bold;
    min-width: 110px;
    width: 110px;
    max-width: 110px;
}

.modal-section span {
    color: darkcyan;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 1rem;
    border-radius: 8px;
    z-index: 1000;
    width: clamp(300px, 90vw, 350px);
    max-height: 80vh;
    overflow-y: auto;
}

.modal.show {
    display: block;
}

.modal-backdrop.show {
    display: block;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

.separator {
    display: block;
    height: 1px;
}

.separator-x4 {
    display: block;
    height: 4px;
}

.citapp-footer {
    color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.citapp-footer ul {
    display: flex;
    gap: 15px;
    padding: 0 10px;
    justify-content: center;
}

.citapp-footer li {
    width: 92px;
    text-align: center;
    list-style: none;
    background-color: white;
    padding: 5px;
}

.citapp-footer li img {
    width: 15px;
    height: 15px;
    margin-right: 1px;
    vertical-align: middle;
}

.citapp-footer li a {
    color: black;
    text-decoration: none;
    font-size: 0.9rem;
}