/* Styl inputu a tlačítka vyhledávání */
#search-input {
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    width: 300px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#search-input:focus {
    border-color: #3FE0BE;
    box-shadow: 0 0 10px #3FE0BE;
}

#search-button {
    background-color: #3FE0BE;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#search-button:hover {
    background-color: #2DC9A7;
}
