/**
 * Homepage Filter Notice Styling
 */

/* Add notice for default Dublin filter */
.home .trek-filters-container::before {
    content: 'Showing Dublin treks by default. Use filters below to explore other counties.';
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1rem;
    border: 1px solid #a5d6a7;
}

/* Highlight the Dublin selection */
.home #county-filter option[value="dublin"][selected] {
    background-color: #e8f5e9;
    font-weight: 600;
}