.search-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    gap: 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.search-form {
    display: flex;
    align-items: center;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 10px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 24px;
    outline: none;
    transition: all 0.2s;
}

.search-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 1px #1a73e8;
}

/* Add some spacing below the search bar for content */
#root {
    margin-top: 120px;
}

/* Desktop styles */
@media (min-width: 768px) {
    .search-container {
        flex-direction: row;
        padding: 1rem 2rem;
    }

    .logo {
        margin-right: 2rem;
    }

    #root {
        margin-top: 80px;
    }
} 