/* Store Finder Search Bar CSS */
.store-finder-container {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
background-color: #f8f9fa;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: 0 auto;
}
.store-finder-search-bar {
display: flex;
width: 100%;
}
.store-finder-input {
flex: 1;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px 0 0 5px;
font-size: 16px;
transition: border-color 0.3s;
}
.store-finder-input:focus {
outline: none;
border-color: #007bff;
}
.store-finder-button {
padding: 10px 20px;
border: none;
background-color: #007bff;
color: #fff;
font-size: 16px;
border-radius: 0 5px 5px 0;
cursor: pointer;
transition: background-color 0.3s;
}
.store-finder-button:hover {
background-color: #0056b3;
}
/* Mobile Responsiveness */
@media (max-width: 600px) {
.store-finder-container {
flex-direction: column;
}
.store-finder-search-bar {
flex-direction: column;
}
.store-finder-input, .store-finder-button {
border-radius: 5px;
}
.store-finder-input {
margin-bottom: 10px;
}
.store-finder-button {
width: 100%;
}
}