@media (max-width: 768px) {
    html, body {
        overflow: auto !important;
        height: auto !important;
        min-height: auto !important;
    }
}

@media (max-width: 768px) {
    .admin-link, 
    a[href*="admin"] {
        display: none !important;
    }
}



/* ====== CLOUDLARE SUCCESS BOX ====== */
.security-widget {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Poppins", sans-serif;
    margin: 18px 0 10px 0;
}

/* Ícone ✔ verde */
.security-check {
    background: #5cb85c;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-icon {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Texto: Sucesso! */
.security-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Cloudflare na direita */
.cloudflare-info {
    margin-left: auto;
    text-align: right;
}

.cloudflare-logo {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 2px;
}

/* Links: privacidade | termos */
.cloudflare-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cloudflare-link {
    font-size: 12px;
    color: #3b82f6;
    text-decoration: none;
}

.cloudflare-link:hover {
    text-decoration: underline;
}


