/* static/css/components.css */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -1px;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #333333;
    background-color: #1e1e1e;
    border-radius: 8px 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #6c5ce7;
}

.search-button {
    background-color: #1e1e1e;
    border: 1px solid #333333;
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #2d2d2d;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: #6c5ce7;
}