/*
 Theme Name:   GeneratePress Child
 Theme URI:    http://fingertiponline.com/
 Description:  Child theme for GeneratePress
 Author:       Naivedyanandan Sonowal
 Author URI:   http://fingertiponline.com/
 Template:     generatepress
 Version:      1.0.0
*/
/* Universal search bar styling */
/* Universal search bar styling */
.header-search-below form {
    text-align: center;
    margin: 15px 0;
}
.header-search-below input {
    width: 70%;
    max-width: 800px; /* prevents over-stretching on very big screens */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px; /* makes left side rounded */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    font-size: 16px;
}
/* Search button styling */
.header-search-below button {
    padding: 10px 16px;
    border: none;
    background-color: #2b8ce6; /* slightly darker sky blue */
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.header-search-below button:hover {
    background-color: #1a75d1; /* deeper blue on hover */
}

/* Responsive design for mobile & tablets */
@media (max-width: 768px) {
    .header-search-below input {
        width: 80%; /* shrink nicely on mobile */
        max-width: 100%;
    }
    .header-search-below button {
        margin-top: 8px;
        width: auto;
    }
}
