<style>
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
select#stateFilter {
    display: none;
}
@media(min-width: 768px)
{
  p.view-menu-btn
  {
    display: none;
  }
        div#content {
        background-size: 100% !important;
        background-repeat: no-repeat !important;
        background-position: 0px 50px;
    }
    #content {
    width: 100%;
  height: 6vh;
    transition: all 0.3s;
    position: relative;
    top: 0;
    right: 0;
}
}
@media(max-width: 768px)
{
    .filters input, .filters select, .filters button {
    width: 100% !important;
}
div#content {
    margin-top: 50px;
}
}
header {
    background-color: #ecae30;
    color: white;
    padding: 0rem 0;
    text-align: center;
}
header h1 {
    font-size: 25px;
    padding: 0px 10px;
}
header h1 {
    margin: 0px !important;
}
main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.filters input,
.filters select,
.filters button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.filters button {
    background-color: #80a938;
    color: white;
    cursor: pointer;
    border: none;
}

.filters button:hover {
    background-color: #218838;
}

.store-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.store-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.store-card:hover {
    transform: translateY(-5px);
}

.store-card h3 {
    margin-top: 0;
    color: #698735;
    font-size: 16px;
    font-weight: bold;
}

.store-card p {
    margin-bottom: 5px;
    line-height: 1.4;
}
.store-card a {
    background: #698735;
    color: #ffffff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px;
    display: inline-block;
}

.store-card a:hover {
    text-decoration: underline;
}

.no-results {
    grid-column: 1 / -1; /* Span across all columns */
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #666;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #333;
    color: white;
    margin-top: 20px;
}
</style>