/* Business Directory Styles */
.business-directory {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #333;
}

.business-category-group h2 {
    font-size: 2em;
    color: #222;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.business-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}

.business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.business-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #0056b3;
}

.business-details p {
    margin: 0 0 10px;
    line-height: 1.6;
    color: #555;
    display: flex;
    align-items: center;
}

.business-details p strong {
    color: #333;
    margin-right: 8px;
    min-width: 80px; /* Align details */
}

.business-details a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.business-details a:hover {
    color: #00a0d2;
}

/* Add some icons using WordPress Dashicons */
.business-details p.address:before,
.business-details p.phone:before,
.business-details p.website:before,
.business-details p.rating:before {
    font-family: 'dashicons';
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 20px;
    line-height: 1;
    margin-right: 10px;
    color: #0073aa;
}

.business-details p.address:before { content: '\f230'; } /* location */
.business-details p.phone:before { content: '\f509'; } /* phone */
.business-details p.website:before { content: '\f112'; } /* admin-site-alt3 */
.business-details p.rating:before { content: '\f155'; } /* star-filled */
