#acl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    font-family: inherit;
}

#acl-popup {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

#acl-popup .mainheading {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

#acl-popup .subheading {
    font-size: 14px;
    line-height: 18px;
    color: #111;
    margin-bottom: 48px;
}

.acl-buttons {
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

#acl-popup button {
    flex: 1;
    padding: 9px 16px;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 19px;
    border: none;
	border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: auto;
    min-width: 170px;
    min-height: 42px;
    color: #fff;
    background-color: #B22222;
}

#acl-popup button:hover {
    background-color: #000;
}