#wpscan-scanner-app {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 25px;
    background-color: #fcfcfc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

#wpscan-scanner-app h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}

#wpscan-scanner-app label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

#wpscan-scanner-app input[type="url"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#wpscan-scanner-app button {
    background-color: #0073aa; /* WordPress primary blue */
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease-in-out;
}

#wpscan-scanner-app button:hover {
    background-color: #005a87;
}

#wpscan-scanner-app button:disabled {
    background-color: #9e9e9e;
    cursor: not-allowed;
}

#wpscan-results {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    min-height: 50px;
    background-color: #fff;
}

#wpscan-results h3 {
    margin-top: 0;
    font-size: 1.3em;
    margin-bottom: 10px;
}
#wpscan-results h4 {
    font-size: 1.1em;
    margin-top: 15px;
    margin-bottom: 8px;
}

#wpscan-results p {
    margin-bottom: 10px;
}
#wpscan-results ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom:15px;
}
#wpscan-results li {
    margin-bottom: 5px;
}

#wpscan-results pre {
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 3px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.9em;
    max-height: 400px; /* Limit height for very long responses */
    overflow-y: auto;   /* Add scroll for long responses */
}