/* Search Bar Styles */
.search-bar {
    text-align: center;
    margin: 1rem 0 2rem 0;
}

/* -------------------- Dark mode -------------------- */
body.dark-mode #search-input {
    width: 90%;
    max-width: 500px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #1f1f1f;
    color: #eee;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode #search-input::placeholder {
    color: #888;
}

body.dark-mode #search-input:focus {
    border-color: #00bfff;
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

/* -------------------- Light mode -------------------- */
body.light-mode #search-input {
    width: 90%;
    max-width: 500px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #222;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.light-mode #search-input::placeholder {
    color: #555;
}

body.light-mode #search-input:focus {
    border-color: #0077cc;
    box-shadow: 0 0 5px rgba(0, 119, 204, 0.5);
}
