/**
 * WP Content Fortress — NoScript Warning CSS
 * Displayed only when JavaScript is disabled via <noscript>.
 */

.wcf-noscript-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcf-noscript-box {
    background: #fff;
    color: #222;
    padding: 40px 50px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.wcf-noscript-box p {
    margin: 0;
}
