body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: system-ui, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#search-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease-in-out;
}

#search-section.moved-up {
    justify-content: flex-start;
    margin-top: 2rem;
}

#search-section h1 {
    color: #bb86fc;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

#search-section a{
    text-decoration:none;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.form-control {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #6f42c1;
    border-radius: 50px;
    padding: 0.75em 1.5em;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #bb86fc;
    box-shadow: 0 0 0 0.25rem rgba(187, 134, 252, 0.25);
    outline: none;
}

.btn-primary {
    background-color: #6f42c1;
    border-color: #6f42c1;
    border-radius: 50px;
    padding: 0.75em 1.5em;
    margin-left: 0.5em;
}

.btn-primary:hover {
    background-color: #8c57e6;
    border-color: #8c57e6;
}

#results {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
}

.cve {
    border-bottom: 1px solid #333;
    padding: 1em 0;
}

.cve a {
    color: #bb86fc;
    text-decoration: none;
}

.cve a:hover {
    color: #d0aaff;
    text-decoration: underline;
}

#loading {
    display: none;
    text-align: center;
    margin: 2em 0;
}

#loading img {
    width: 64px;
    height: 64px;
    filter: hue-rotate(250deg);
}

footer {
    border-top: 1px solid #333;
    margin-top: auto;
    padding: 1em 0;
    text-align: center;
    color: #aaa;
    font-size: 0.9em;
}