/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles - inspired by dog-parks.org */
header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background-color: #0056b3; /* Blue background like dog-parks */
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Filter section styles - updated for dog-parks.org style */
.filters {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin: 0 auto;
}

#search-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 18px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#search-input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

#search-btn, 
.location-btn {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

#search-btn {
    background-color: #0056b3;
    color: white;
}

#search-btn:hover {
    background-color: #004494;
}

.location-btn {
    background-color: #3498db;
    color: white;
}

.location-btn:hover {
    background-color: #2980b9;
}

#search-btn i,
.location-btn i {
    margin-right: 10px;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.services-label {
    font-weight: 600;
    margin-right: 5px;
    font-size: 1rem;
    color: #555;
}

.filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.filter-label:hover {
    background-color: #e9ecef;
}

.filter-label input {
    margin-right: 8px;
}

/* Results info styles */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 500;
}

#clear-filters {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

#clear-filters:hover {
    background-color: #d32f2f;
}

.hidden {
    display: none;
}

/* Intro text - like dog-parks.org */
.intro-text {
    margin-bottom: 40px;
    text-align: center;
}

.intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Features list - like dog-parks.org */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.feature {
    background-color: #f8f9fa;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature i {
    margin-right: 8px;
    color: #0056b3;
}

/* Launderette cards styles - updated for dog-parks.org style */
.launderettes-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.launderette-card {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    min-height: 240px;
    height: auto;
    border: 1px solid #eaeaea;
    padding: 10px;
    font-size: 16px;
}

.launderette-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Left side - details */
.launderette-details {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow-y: visible;
    padding-right: 20px;
}

/* Right side - image */
.launderette-image {
    flex: 2;
    overflow: hidden;
    max-width: 28%;
    border-radius: 8px;
    margin-left: 15px;
}

.launderette-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Improved typography and spacing for launderette details */
.launderette-name {
    font-size: 22px;
    margin-bottom: 6px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.launderette-address {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    font-weight: normal;
}

/* Hours displayed as pills */
.launderette-hours {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.launderette-hours-label {
    width: 100%;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
}

.hour-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eef1ff;
    color: #4a56e2;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    white-space: nowrap;
    min-width: 80px;
}

/* Launderette description */
.launderette-description {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Badges for services and features */
.launderette-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: #28a745;
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f0f0f0;
    color: #555;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 4px;
}

.service-badge i {
    margin-right: 6px;
    color: #555;
}

.launderette-services {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Google Maps link - styled as main CTA button */
.launderette-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4a56e2;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(74, 86, 226, 0.25);
}

.launderette-map-link:hover {
    background-color: #3942c3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 86, 226, 0.3);
}

.launderette-map-link i {
    margin-right: 8px;
}

/* Loading spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    font-size: 30px;
    color: #0056b3;
    grid-column: 1 / -1;
}

/* Error message */
.error-message {
    text-align: center;
    color: #dc3545;
    padding: 30px;
    grid-column: 1 / -1;
    font-size: 1.2rem;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 30px;
    color: #6c757d;
    grid-column: 1 / -1;
    font-size: 1.2rem;
}

/* FAQ section - like dog-parks.org */
.faq-section {
    margin-top: 60px;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #0056b3;
}

.faq-answer {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Footer styles */
footer {
    margin-top: 60px;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
}

footer p {
    margin-bottom: 10px;
}

footer small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Mobile optimization for search and filters */
@media (max-width: 768px) {
    /* Search section */
    .search-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    /* Search container */
    .search-container {
        width: 100%;
        max-width: 100%;
    }
    
    #search-input {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
        padding: 15px;
        font-size: 16px;
    }
    
    .button-row {
        display: flex;
        width: 100%;
        gap: 10px;
    }
    
    #search-btn {
        border-radius: 8px;
        height: 50px;
    }
    
    .search-container .location-btn {
        border-radius: 8px;
        height: 50px;
    }
    
    /* Filters section */
    .filters-section {
        padding: 20px 15px;
    }
    
    .filter-options {
        gap: 10px;
    }
    
    .filter-group {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .filter-label {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .services-label {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .launderette-name {
        font-size: 20px;
    }
    
    .launderette-services {
        margin-top: 15px;
    }
    
    .launderette-image {
        height: 180px;
    }
}

/* Adjust the height of the card slightly */
.launderette-card .card-content {
    height: auto; /* Allow content to determine height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Location button styles */
.location-btn {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.location-btn:hover {
    background-color: #2980b9;
}

.location-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Distance display styles */
.launderette-distance {
    color: #3498db;
    font-size: 14px;
    margin: 5px 0 10px 0;
    display: flex;
    align-items: center;
}

.launderette-distance i {
    margin-right: 5px;
}

/* Fix for mobile filter layout to match screenshot */
.search-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    width: 100%;
}

.search-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.search-input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    margin-bottom: 10px;
}

.search-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.search-buttons button {
    flex: 1;
}

#search-btn {
    flex: 1;
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.location-btn {
    flex: 1;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
}

.services-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.filter-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-label {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.filter-label input {
    margin-right: 10px;
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

#results-count {
    font-size: 16px;
}

#clear-filters {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

/* Search section near me button */
.search-container .location-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container .location-btn:hover {
    background-color: #004494;
}

.search-container .location-btn i {
    margin-right: 5px;
}

@media (max-width: 480px) {
    .search-buttons {
        gap: 20px;
    }
    
    /* Make button text fit better on very small screens */
    .search-buttons button {
        padding: 12px 8px;
        font-size: 15px;
    }
}

/* Add styles for image loading state */
.launderette-img.loading {
  min-height: 300px;
  background-color: #f5f5f5;
  background-image: linear-gradient(90deg, #f5f5f5, #e0e0e0, #f5f5f5);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: relative;
}

.launderette-img.loading::after {
  content: "Loading...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Make sure images fit properly in their containers */
.launderette-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Add fade-in effect for images once they load */
.launderette-img:not(.loading) {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Visually hidden elements for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Map intro-text to intro-section */
.intro-section {
    margin-bottom: 40px;
    text-align: center;
}

/* Map filters to search-section */
.search-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s, transform 0.2s;
    border: 1px solid #e9ecef;
}

.filter-label:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.filter-label input {
    margin-right: 8px;
}

.filter-label input:checked + span {
    font-weight: 600;
    color: #0056b3;
}

.filter-label:has(input:checked) {
    background-color: #e6f0ff;
    border-color: #b3d1ff;
}

/* Popular areas section */
.popular-areas {
    margin: 60px 0;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.popular-areas h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.area-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.area-links a {
    display: inline-block;
    background-color: #f8f9fa;
    color: #0056b3;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.area-links a:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
}

/* About section */
.about-section {
    margin: 60px 0;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    line-height: 1.6;
}

.about-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.about-section p {
    margin-bottom: 15px;
    color: #555;
}

/* Footer sections */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding-right: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #003d7a;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
        padding-right: 0;
    }
    
    .area-links {
        gap: 10px;
    }
    
    .area-links a {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Add these new styles for the filters section */
.filters-section {
    background-color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    width: 100%;
}

.filters-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

/* Update filter options for compact layout */
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    transition: background-color 0.2s, transform 0.2s;
    white-space: nowrap;
    font-size: 0.9rem;
    margin: 0;
    height: auto;
}

.filter-label:hover {
    background-color: #e9ecef;
    transform: translateY(-1px);
}

.filter-label input {
    margin-right: 4px;
}

.filter-label input:checked + span {
    font-weight: 600;
}

.filter-label:has(input:checked) {
    background-color: #d4edff;
    border: 1px solid #0056b3;
}

.services-label {
    font-weight: 600;
    margin-right: 5px;
    font-size: 0.9rem;
    color: #555;
    white-space: nowrap;
    padding: 4px 8px;
}

/* Search section and filter styling - fixed for production */
.search-section, 
.filters-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    width: 100%;
}

.search-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
}

.filters-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.filter-title, 
.filters-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.search-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
}

#search-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #e1e1e1;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

.button-row {
    display: flex;
    width: 100%;
}

#search-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 0 35px;
    border-radius: 0 0 0 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 20px;
    height: 60px;
    flex: 1;
}

.location-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 0 8px 0;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: 60px;
    flex: 1;
}

/* Filter options */
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
}

.filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
}

.filter-label:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.filter-label input {
    margin-right: 8px;
}

.filter-label input:checked + span {
    font-weight: 600;
}

.filter-label:has(input:checked) {
    background-color: #d4edff;
    border: 1px solid #0056b3;
}

.services-label {
    font-weight: 600;
    margin-right: 5px;
    font-size: 1rem;
    color: #555;
    white-space: nowrap;
}

/* Force styles to appear on launderette-directory.com */
@media screen and (min-width: 1px) {
    .search-section,
    .filters-section {
        background-color: white !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border-radius: 8px !important;
        padding: 25px !important;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .search-section,
    .filters-section {
        padding: 20px;
    }
    
    .filter-options {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .services-label {
        margin-bottom: 5px;
    }
}

/* Services group styling */
.services-group {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f0f7ff;
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid #d4edff;
}

.services-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0056b3;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

/* Update filter options spacing */
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0;
}

/* Update for mobile */
@media (max-width: 768px) {
    .services-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
        padding: 10px 15px;
    }
    
    .services-label {
        margin-bottom: 5px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
}

/* Print styles for better accessibility */
@media print {
    body {
        background-color: white;
        color: black;
        font-size: 12pt;
    }

    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    header, footer, 
    .search-section, 
    .filters-section,
    #clear-filters,
    .launderette-map-link {
        display: none !important;
    }

    .launderette-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ccc;
        margin-bottom: 20px;
        padding: 15px;
        box-shadow: none;
    }

    .launderette-image {
        max-width: 150px;
    }

    .launderette-name {
        font-size: 16pt;
        font-weight: bold;
    }

    .launderette-address,
    .launderette-description {
        font-size: 11pt;
    }

    a {
        text-decoration: none;
        color: black;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
    }

    .badge, .service-badge {
        border: 1px solid #ccc;
        color: black;
        background: none;
    }

    .hour-pill {
        border: 1px solid #ccc;
        color: black;
        background: none;
    }

    .popular-areas, .about-section, .faq-section {
        break-before: always;
        page-break-before: always;
    }
} 