/* This makes everything look better */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

h2 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-top: 40px;
}

article {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h3 {
    color: #3498db;
    margin-top: 0;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    border-radius: 10px;
}

/* Search Bar Styles */
#searchBar {
    width: 100%;
    max-width: 600px;
    padding: 12px 20px;
    margin: 20px auto;
    display: block;
    font-size: 16px;
    border: 2px solid #3498db;
    border-radius: 25px;
    box-sizing: border-box;
}

#searchBar:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

/* Filter Buttons */
#filters {
    text-align: center;
    margin: 20px 0 40px 0;
}

.filter-btn {
    padding: 10px 25px;
    margin: 5px;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.filter-btn.active {
    background-color: #3498db;
    color: white;
    border-color: #2980b9;
}

/* Business Cards */
.business-card {
    background-color: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.business-card h3 {
    color: #3498db;
    margin-top: 0;
}

.business-card .description {
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

/* No Results Message */
#noResults {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
    font-size: 18px;
}