.header-container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.header-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar-container {
    width: 100%;
}

.search-bar {
    max-width: 100%;
    width: 100%;
    padding: 15px 20px;
    font-size: 1.2rem;
    border: 2px solid #3278c3;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0px 4px 6px rgba(0, 123, 255, 0.2);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.search-bar:focus {
    border-color: #0056b3;
    box-shadow: 0px 6px 12px rgba(0, 86, 179, 0.4);
    background-color: #f0f8ff;
}