<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ExploitFinder WAF Challenge Widget Styles */

.ef-waf-challenge-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #ffffff; /* Clean white background */
    border: 1px solid #dee2e6; /* Softer border color */
    border-radius: 12px; /* More pronounced rounding */
    padding: 35px 40px; /* Increased padding */
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* More defined shadow */
    max-width: 800px; /* Wider for more content */
    margin-left: auto;
    margin-right: auto;
}

/* Header Section Styling */
.ef-waf-challenge-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef; /* Separator line */
}

.ef-waf-challenge-header h2 {
    color: #212529; /* Dark, almost black for strong title */
    font-size: 2.2em; /* Larger title */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ef-waf-challenge-header p {
    color: #495057; /* Softer grey for intro paragraph */
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Explanation Section Styling */
.ef-waf-challenge-explanation {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef; /* Separator line */
}

.ef-waf-challenge-explanation h4 {
    color: #0056b3; /* Primary blue for subheadings */
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 25px; /* Space above each subheading */
    margin-bottom: 15px;
}
.ef-waf-challenge-explanation h4:first-child {
    margin-top: 0;
}

.ef-waf-challenge-explanation p,
.ef-waf-challenge-explanation ul li {
    color: #343a40; /* Dark grey for good readability */
    font-size: 1.05em;
    line-height: 1.75;
    margin-bottom: 12px;
}

.ef-waf-challenge-explanation ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

.ef-waf-challenge-explanation ul li {
    padding-left: 25px; /* Indent list items */
    position: relative;
    margin-bottom: 10px;
}

.ef-waf-challenge-explanation ul li::before {
    content: "\2713"; /* Checkmark character */
    color: #28a745; /* Green for checkmark */
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
}

.ef-waf-challenge-explanation ul li strong {
    color: #0056b3; /* Match subheading color for emphasis */
    font-weight: 600;
}

/* Form Styling - Refinements */
.ef-waf-challenge-form p {
    margin-bottom: 22px;
}

.ef-waf-challenge-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #343a40;
    font-size: 1.05em;
}

.ef-waf-challenge-form input[type="text"],
.ef-waf-challenge-form select,
.ef-waf-challenge-form textarea {
    width: 100%;
    padding: 15px; /* Generous padding */
    border: 1px solid #ced4da;
    border-radius: 8px; /* More rounded inputs */
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #f8f9fa; /* Light background for inputs */
}

.ef-waf-challenge-form input[type="text"]:focus,
.ef-waf-challenge-form select:focus,
.ef-waf-challenge-form textarea:focus {
    border-color: #007bff; /* Standard Bootstrap blue for focus */
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
    background-color: #fff;
}

.ef-waf-challenge-form textarea[name="ef_waf_payload"] {
    min-height: 200px; /* Even taller for payload */
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 1em;
    line-height: 1.6;
    background-color: #e9ecef; /* Slightly darker background for payload, for contrast */
    color: #212529;
}

.ef-waf-submit-button {
    background-color: #007bff; /* Bootstrap primary blue */
    color: white;
    padding: 15px 30px; /* Larger button */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: block;
    width: auto;
    margin: 30px auto 0 auto;
}

.ef-waf-submit-button:hover,
.ef-waf-submit-button:focus {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Response Area - Grand and Professional */
.ef-waf-challenge-response-area {
    margin-top: 40px;
    border-radius: 10px;
    background-color: #f8f9fa; /* Light grey background for the area */
    border: 1px solid #dee2e6;
    min-height: 150px;
    position: relative;
    overflow: hidden;
    padding: 0; 
}

.ef-waf-challenge-response-loader {
    text-align: center;
    padding: 40px 20px;
}

.ef-waf-challenge-response-loader p {
    font-size: 1.2em;
    color: #495057;
    margin-bottom: 25px;
}

.ef-waf-spinner {
    border: 6px solid #e9ecef;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.8s linear infinite; /* Faster spin */
    margin: 0 auto;
}

.ef-waf-challenge-response-content {
    padding: 30px 35px; /* Generous padding */
    text-align: center;
}

.ef-waf-challenge-response-content h4 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8em; /* Larger heading for status */
    font-weight: 700;
    border-bottom: 1px solid #ced4da;
    padding-bottom: 20px;
    line-height: 1.4;
}

.ef-waf-challenge-response-content p {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #343a40;
}

.ef-waf-challenge-response-content strong {
    color: #000;
    font-weight: 700;
}

.ef-waf-status-icon {
    font-size: 4em !important; /* Grand icon */
    display: block;
    margin: 0 auto 25px auto;
    line-height: 1 !important;
    float: none;
}

/* Status-specific styling - MORE IMPACT */
.ef-waf-benigno {
    background: linear-gradient(145deg, #e6f7f0 0%, #cceff6 100%); /* Softer green to blueish gradient */
    border-left: 8px solid #20c997; /* Tealish green accent */
    color: #084235;
}
.ef-waf-benigno .ef-waf-status-icon {
    color: #20c997;
}
.ef-waf-benigno h4 {
    color: #0a5340; 
}
.ef-waf-benigno p {
    color: #084235;
}

.ef-waf-maligno {
    background: linear-gradient(145deg, #fff0f1 0%, #ffe0e3 100%); /* Softer red gradient */
    border-left: 8px solid #dc3545; /* Standard red accent */
    color: #58151c;
}
.ef-waf-maligno .ef-waf-status-icon {
    color: #dc3545;
}
.ef-waf-maligno h4 {
    color: #721c24;
}
.ef-waf-maligno p, .ef-waf-maligno p strong {
    color: #58151c;
}

.ef-waf-info {
    background: linear-gradient(145deg, #e7f5ff 0%, #d8eeff 100%); 
    border-left: 8px solid #007bff;
    color: #004085;
}
.ef-waf-info h4 {
    color: #004085;
}
.ef-waf-info p {
    color: #004c9e;
}

.ef-waf-error {
    background: linear-gradient(145deg, #fff8e1 0%, #ffefcf 100%); 
    border-left: 8px solid #ffc107; /* Warning yellow */
    color: #664d03;
}
.ef-waf-error h4, .ef-waf-error p {
    color: #664d03;
}

.ef-waf-toggle-raw-response {
    background-color: #6c757d; /* Bootstrap secondary grey */
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    margin: 25px auto 0 auto;
    display: block;
    transition: background-color 0.2s ease;
}

.ef-waf-toggle-raw-response:hover {
    background-color: #545b62;
}

.ef-waf-raw-response-json {
    background-color: #212529; /* Dark theme for code */
    color: #f8f9fa; /* Light text */
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0 0 0;
    border: 1px solid #343a40;
    max-height: 400px; /* More height for raw response */
    overflow-y: auto;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 0.95em;
    line-height: 1.65;
} </pre></body></html>