/* Dark hacker-style theme */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f1115;
    color: #f1f1f1;
    line-height: 1.6;
}


/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #111;
    border-bottom: 2px solid #333;
}

.navbar .left h1 {
    font-size: 1.8rem;
    color: #00ff9f;
    margin: 0;
}

.navbar .right a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.navbar .right a:hover {
    background-color: #00ff9f;
    color: #111;
}


/* Main Content */

.container {
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
}


/* Header */

header {
    border-bottom: 2px solid #333;
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 2.2rem;
    margin: 0;
    color: #00ff9f;
}

.stats {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #ccc;
}


/* Filters */

.filters {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.filters input {
    padding: 0.8rem;
    background-color: #1a1d23;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    width: 250px;
}

.filters input::placeholder {
    color: #aaa;
}

.filters button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: #00ff9f;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filters button:hover {
    background-color: #00cc7f;
}


/* Breach List */

.breach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breach {
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #1a1d23;
    border-left: 7px solid #444;
    transition: 0.3s ease;
}

.breach:hover {
    background-color: #22252b;
}

.breach .meta {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.label {
    font-weight: bold;
    color: #aaa;
}

.severity {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.zəif {
    background-color: #2ecc71;
}

.orta {
    background-color: #f1c40f;
}

.ağır {
    background-color: #e67e22;
}

.kritik {
    background-color: #e74c3c;
}


/* Footer */

footer {
    margin-top: 4rem;
    font-size: 1rem;
    color: #777;
    text-align: center;
}


/* Modify link styles to make them less harsh */

a {
    color: #00ff9f;
    /* Soft greenish color */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #66ffcc;
    /* Slightly lighter green for hover */
}


/* Optionally, you can add a subtle text shadow to improve readability */

a {
    text-shadow: 0 0 3px rgba(0, 255, 159, 0.7);
}