/**
 * Public CSS - ShlokShield — Security & Firewall Pro
 */

/* Honeypot field - hidden from users but visible to bots */
.ssp-honeypot-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Visitor tracking indicator (optional, can be hidden) */
.ssp-tracking-active body {
    /* No visual changes, just a class for developers */
}

/* Optional: Add a small indicator for admins to see that tracking is active */
body.ssp-tracking-active.logged-in::after {
    content: "👁️";
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 10px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.5;
}

/* Firewall blocked page styling */
.ssp-blocked-page {
    text-align: center;
    padding: 50px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ssp-blocked-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #dc3232;
}

.ssp-blocked-page p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.ssp-blocked-page .ssp-blocked-code {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    display: inline-block;
}