/* Common search bar styling */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.search-section {
    width: 60%;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.search-section form {
    display: flex;
    justify-content: center;
    position: relative;
}

.search-section input[type="text"] {
    width: 100%;
    padding: 1.5rem;
    padding-right: 160px;
    border: 2px solid #3498db;
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: calc(100% - 16px);
    margin: 0;
}

.search-button:hover {
    background-color: #2980b9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-section {
        width: 90%;
    }
}
