<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.vulnerability-finder {
    margin: 20px;
}

.vuln-controls {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 56px;
    z-index: 1;
}

.search-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.search-wrapper .dashicons {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

#vuln-search {
    width: 100%;
    padding: 8px 12px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.filters-row {
    display: flex;
    gap: 10px;
}

#vuln-severity {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.vuln-container {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.vuln-loading {
    text-align: center;
    padding: 40px;
}

.vuln-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vuln-card {
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vuln-card h3 {
    color: #1a1f36;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vuln-meta {
    color: #6b7280;
    font-size: 13px;
    margin: 12px 0;
}

.vuln-description {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
}

.vuln-severity {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 4px 8px;
}

.severity-CRITICAL { 
    background: #dc3545;
    border: 1px solid #c82333;
}

.severity-HIGH { 
    background: #fd7e14;
    border: 1px solid #e8710d;
}

.severity-MEDIUM { 
    background: #ffc107;
    border: 1px solid #e6ac00;
}

.severity-LOW { 
    background: #28a745;
    border: 1px solid #218838;
}

.severity-ExploitFinder { 
    background: #00457f;
    color: #fff;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.5px;
    border: none;
}

.vuln-card.severity-ExploitFinder {
    border-left-color: #0056b3;
}

.vuln-references {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.vuln-references-title {
    font-size: 14px;
    color: #1a1f36;
    font-weight: 500;
    margin-bottom: 10px;
}

.vuln-references-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vuln-reference-link {
    display: inline-flex;
    align-items: center;
    background: #f5f6f7;
    padding: 6px 12px;
    border-radius: 4px;
    color: #0056b3;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.vuln-reference-link:hover {
    background: #e9ecef;
    color: #003d82;
}

#vuln-finder-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
}

.vuln-finder-button {
    background: #0056b3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.vuln-finder-button:hover {
    background: #003d82;
    transform: scale(1.05);
}

.vuln-finder-button .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.vuln-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
}

.vuln-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: #fff;
    z-index: 999999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.vuln-modal.active {
    transform: translateX(0);
}

.vuln-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.vuln-modal-overlay.active {
    opacity: 1;
}

.vuln-modal-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 2;
}

.vuln-modal-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 18px;
    color: #1d2327;
}

.close-modal {
    background: transparent;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

body:not(.wp-admin) #vuln-finder-floating {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body:not(.wp-admin) .vuln-modal-content {
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .vuln-modal {
        width: 70%;
    }
}

@media (max-width: 782px) {
    .vuln-modal {
        width: 100%;
    }
    
    .filters-row {
        flex-direction: column;
    }
    
    #vuln-severity,
    #refresh-vulns {
        width: 100%;
    }
}

#refresh-vulns {
    background: #0056b3;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vuln-loading .spinner {
    background-size: 20px 20px;
    margin: 0 auto;
    opacity: 1;
}

.vuln-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.vuln-container::-webkit-scrollbar {
    width: 8px;
}

.vuln-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.vuln-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.vuln-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.vuln-notification {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.vuln-notification.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.vuln-notification .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Paginazione */
.vuln-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.vuln-page-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.vuln-page-btn:not(:disabled):hover {
    background: #f8f9fa;
    border-color: #c6c6c6;
}

.vuln-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vuln-page-info {
    font-size: 14px;
    color: #666;
}

/* Loading spinner */
.vuln-loading {
    text-align: center;
    padding: 40px;
}

.vuln-loading .spinner {
    margin: 0 auto;
    float: none;
    width: 20px;
    height: 20px;
    background-size: 20px;
    opacity: 1;
    visibility: visible;
}

.vuln-loading p {
    margin-top: 10px;
    color: #666;
} </pre></body></html>