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

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

.nav-link.text-neon:hover {
    color: #00D4A8 !important;
}

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

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

footer {
    color: #7A7A7A;
    font-size: 0.9em;
    background-color: #1A1A1A;
    padding: 10px 0;
    text-align: center;
    border-top: 2px solid #3E3E3E;
}

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

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

/* Header and Navigation */
header {
    background-color: #1A1A1A;
    padding: 10px 0;
    border-bottom: 2px solid #3E3E3E;
}

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

nav ul li {
    margin: 0 15px;
}

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

nav ul li a:hover {
    color: #00D4A8;
}

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

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

section {
    background-color: #1E1E1E;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #3E3E3E;
}

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

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

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

/* Footer */
footer {
    background-color: #1A1A1A;
    padding: 10px 0;
    text-align: center;
    border-top: 2px solid #3E3E3E;
}

footer p {
    color: #7A7A7A;
    font-size: 0.9em;
}
/* Feature Section */
.features-section {
    background-color: #1E1E1E;
    border-radius: 8px;
    padding: 40px;
}

.feature-card {
    background-color: #2A2A2A;
    border: 1px solid #3E3E3E;
    border-radius: 8px;
    color: #E0E0E0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.text-neon {
    color: #00FFAB;
}

.text-muted {
    color: #7A7A7A;
}
button {
    background-color: #28a745 !important; /* Green color */
    color: #fff !important; /* White text color */
    border: none !important; /* Remove border */
    padding: 10px 20px !important; /* Add some padding */
    border-radius: 4px !important; /* Rounded corners */
    cursor: pointer !important; /* Pointer cursor on hover */
    transition: background-color 0.3s ease !important; /* Smooth transition */
}

button:hover {
    background-color: #218838 !important; /* Darker green on hover */
}
.table td {
    color: #fff !important; /* White text color */
}
.table .task-row:hover {
    cursor: pointer !important; /* Change cursor to pointer */
    background-color: #2A2A2A !important; /* Brighter background color */
    transition: background-color 0.3s ease !important; /* Smooth transition */
}
.card {
    background-color: #121212 !important; /* Set the background color */
    color: #E0E0E0; /* Set the text color */
    border: 1px solid #3E3E3E; /* Set the border color */
    border-radius: 8px; /* Set the border radius */
    padding: 20px; /* Add some padding */
}
.cve-name {
    width: 10em; /* Adjust the size as needed */
}
.publish-date {
    width: 10em; /* Adjust the size as needed */
}
.table .cve-row:hover {
    cursor: pointer !important; /* Change cursor to pointer */
    background-color: #2A2A2A !important; /* Brighter background color */
    transition: background-color 0.3s ease !important; /* Smooth transition */
}
.cve-details {
    margin-top: 20px;
}
.cve-details th {
    width: 20%;
}
