<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header and navigation bar styling */
/* Header and navigation bar styling */
header {
    background-color: #036a97;
    padding: 10px 0;
}

/* Flexbox container for navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically align items */
}

/* Styling for the left-side links (Download, Dashboard, Logout) */
nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

ol.r {list-style-type: none;}

/* Logo in the center of the nav */
.nav-logo img {
    height: 30px; /* adjust as needed */
  }



.logo-container {
    flex-grow: 1; /* Permite que el contenedor del logo ocupe el espacio disponible */
    display: flex; /* Habilita Flexbox en el contenedor del logo */
    justify-content: center; /* Centra horizontalmente el contenido del contenedor */
}



/* Style for Account Group to align it on the far right */
#account-group-display {
    color: #fff; /* Highlighted color */
    font-size: 18px;
    font-weight: bold;
    padding: 0px 10px;
    border-radius: 5px;
    margin-left: auto; /* Pushes it to the far right */
}

/* Main content styling */
main {
    padding: 20px;
    text-align: center;
}


/* Styling for the Download section */
#download {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.download-button {
    padding: 12px 25px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px; /* Increase space between the download button and the connection string section */
}

.download-button:hover {
    background-color: #218838;
}

#connection-string-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontally centers content */
    justify-content: center; /* Vertically centers content */
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Centers the section in its parent */
    margin-top: 30px; /* Space between the connection string section and the button above */
}


#connection-string-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

#connection-string {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

/* Align buttons horizontally */
#connection-string-section .button-container {
    display: flex;
    gap: 10px; /* Adds space between buttons */
    margin-top: 10px;
}

#connection-string-section button {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#connection-string-section button:hover {
    background-color: #0056b3;
}

p#copy-success {
    margin-top: 10px;
    font-size: 14px;
}

#copy-connection-string {
    background-color: #17a2b8;
    color: #fff;
}

#copy-connection-string:hover {
    background-color: #117a8b;
}

#toggle-visibility {
    background-color: #007bff;
    color: #fff;
}

#toggle-visibility:hover {
    background-color: #0056b3;
}

#connection-string-section {
    text-align: center;
    margin-top: 20px;
}
.prerequisites {
    margin-bottom: 30px; /* Space below the prerequisites section */
}

input[type="password"] {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}



/* Login form styles */
#login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#login-form input {
    margin: 10px 0;
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#login-form button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #377BB5;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#login-form button:hover {
    background-color: #0056b3;
}

#login-message {
    margin-top: 10px;
    font-weight: bold;
    color: #d9534f; /* Default error color */
}

.vulnerability-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.severity-high {
    color: #d9534f;
}

.severity-medium {
    color: #f0ad4e;
}

.severity-low {
    color: #5bc0de;
}

/* Additional styling for improved readability */
h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Style for the table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

/* Style for table headers */
table th {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: left;
    font-weight: bold;
    border: 1px solid #ddd;
}

/* Style for table rows */
table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Add alternating row colors for better readability */
table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Highlight hover effect for rows */
table tr:hover {
    background-color: #f5f5f5;
}

/* Style for table row hover */
table tr:hover td {
    background-color: #e0e0e0;
    color: #333;
}

/* Center align specific columns (like Port, State, Confidence) */
table td:nth-child(4),
table td:nth-child(5),
table td:nth-child(12) {
    text-align: center;
}

/* Give the table a border radius */
table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Adjust text alignment for Host and CPE columns */
table td:nth-child(2),
table td:nth-child(3) {
    font-family: "Courier New", monospace;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    nav ul li {
        margin: 0 10px;
    }

    #account-group-display {
        font-size: 16px;
    }

    table th, table td {
        padding: 8px;
        font-size: 12px;
    }

    .download-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    #connection-string-section {
        max-width: 90%;
    }

    #connection-string {
        font-size: 14px;
    }

    #connection-string-section .button-container {
        flex-direction: column;
    }
}

.high-severity {
    background-color: yellow; /* or any color you prefer */
}

/* Style for the top CVE table */
#top-cves table,
#top-cves h3,
.custom-separator {
    margin-bottom: 10px; /* Reduce the bottom margin */
}

#top-cves table {
    width: 60%; /* Adjust this width as needed */
    margin: 0 auto; /* Center the table */
    margin-bottom:50px; /* Add space between top CVE table and the main vulnerabilities table */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Style for the full vulnerabilities table */
#vulnerability-data table {
    width: 90%; /* Adjust this width as needed */
    margin: 0 auto; /* Center the table */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


#top-cves table,
#vulnerability-data table {
    margin-top: 10px; /* Reduce the top margin */
}

.custom-separator {
    margin: 10px 0; /* Adjust the separator space */
}






/* AI Insights Container */
#ai-insights-container {
    margin: 20px auto; /* Center horizontally while keeping content aligned left */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Reduce the container width */
    text-align: left; /* Align content to the left */
}

/* Host Section */
.host-section {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

/* Host Header */
.host-header {
    background-color: #036a97;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    text-align: left; /* Align text to the left */
}

.host-header:hover {
    background-color: #024c6e;
}

/* Host Content */
.host-content {
    display: none;
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    background-color: #f4f4f4;
    border-top: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    text-align: left; /* Align text to the left */
}

/* Code Block */
.code-block {
    background-color: #272822;
    color: #f8f8f2;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-family: "Courier New", monospace;
    font-size: 13px;
    overflow-x: auto;
    text-align: left; /* Align code to the left */
}




/* Important Note */
.important-note {
    background-color: #ffe9e9;
    border: 1px solid #f5c2c2;
    padding: 15px;
    margin-top: 20px;
    border-radius: 6px;
    font-size: 14px;
    color: #851823;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .host-header {
        font-size: 14px;
        padding: 8px 12px;
    }

    .host-content {
        font-size: 12px;
    }

    .code-block {
        font-size: 12px;
    }
}


/* Under Construction Section */
#under-construction {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background-color: #f9f9f9; /* Matches your app's background */
}

.content-container {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

/* Icon */
.construction-icon {
    height: 100px;
    margin-bottom: 20px;
}

/* Heading */
.content-container h2 {
    color: #036a97; /* Matches your app's blue */
    font-size: 28px;
    margin-bottom: 10px;
}

/* Text */
.content-container p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 60%; /* Adjust for animation */
    height: 100%;
    background: linear-gradient(90deg, #036a97, #0056b3);
    animation: progressAnimation 2s infinite;
}

/* Progress Bar Animation */
@keyframes progressAnimation {
    0% { width: 0; }
    50% { width: 80%; }
    100% { width: 0; }
}


.feature-description {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
    text-align: center;
}
</pre></body></html>