body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.search-bar {
    width: 100%;
    padding: 10px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-bar input {
    width: 60%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-bar button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #0056b3;
}

.map-container {
    width: 100%;
    height: 500px;
}

.accordion {
    width: 100%;
    border: none;
}

.accordion-item {
    margin: 10px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: #e3f2fd; /* Celestino chiarissimo */
    position: relative;
}

.accordion-header {
    padding: 10px;
    background-color: #bbdefb; /* Celestino Splendidi e Splendenti */
    cursor: pointer;
    font-weight: bold;
    color: #0d47a1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.accordion-content {
    display: none;
    padding: 10px;
}

.store {
    margin: 10px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.store h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.store p {
    margin: 5px 0;
    font-size: 14px;
}

.store a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #0288d1; /* Celeste per il tasto */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.store a:hover {
    background-color: #0277bd;
}

@media(min-width: 1800px) {
    .accordion-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media(min-width: 900px) and (max-width: 1800px) {
    .accordion-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media(max-width: 899px) {
    .accordion-content {
        display: block;
    }
}
