body {
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Roboto Mono', monospace;
}

.navbar-brand, .nav-link.text-neon {
    color: #007BFF !important;
    transition: color 0.3s ease;
}

.nav-link.text-neon:hover {
    color: #0056b3 !important;
}

.navbar {
    border-bottom: 1px solid #CCCCCC;
}

.alert-dismissible .btn-close {
    filter: brightness(1);
}

footer {
    color: #333333;
    font-size: 0.9em;
    background-color: #F8F9FA;
    padding: 10px 0;
    text-align: center;
    border-top: 2px solid #CCCCCC;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}

/* Body Styling */
body {
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #F8F9FA;
    padding: 10px 0;
    border-bottom: 2px solid #CCCCCC;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0056b3;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

/* Sections */
h1, h2 {
    color: #007BFF;
    margin-bottom: 15px;
}

section {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #CCCCCC;
}

section ul {
    list-style: none;
    margin-top: 10px;
}

section ul li {
    padding: 5px 0;
    border-bottom: 1px solid #CCCCCC;
}

section ul li:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background-color: #F8F9FA;
    padding: 10px 0;
    text-align: center;
    border-top: 2px solid #CCCCCC;
}

footer p {
    color: #333333;
    font-size: 0.9em;
}

/* Feature Section */
.features-section {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 40px;
}

.feature-card {
    background-color: #F8F9FA;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    color: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.2);
}

.feature-icon img {
    filter: brightness(1) invert(0);
}

.text-neon {
    color: #007BFF;
}

.text-muted {
    color: #333333;
}

button {
    background-color: #007BFF !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

button:hover {
    background-color: #0056b3 !important;
}

.table td {
    color: #000000 !important;
}

.table .task-row:hover {
    cursor: pointer !important;
    background-color: #F8F9FA !important;
    transition: background-color 0.3s ease !important;
}

.card {
    background-color: #FFFFFF !important;
    color: #000000;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    padding: 20px;
}

.cve-name {
    width: 10em;
}

.publish-date {
    width: 10em;
}

.table .cve-row:hover {
    cursor: pointer !important;
    background-color: #F8F9FA !important;
    transition: background-color 0.3s ease !important;
}

.cve-details {
    margin-top: 20px;
}

.cve-details th {
    width: 20%;
}
