.map-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 600px;
}
.map-column {
    flex: 0 0 70%;
    height: 100%;
}
.categories-column {
    flex: 0 0 30%;
    padding-left: 1.5rem;
    overflow-y: auto;
    height: 100%;
}
#map {
    width: 100%;
    height: 100%;
}
/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .map-container {
        flex-direction: column;
        height: auto;
    }
    .map-column,
    .categories-column {
        flex: 0 0 100%;
        height: auto;
    }
    #map {
        height: 500px;
    }
    .categories-column {
        padding-left: 0;
        padding-top: 1.5rem;
    }
}
.accordion-item {
    border-bottom: 1px solid #d0d0d0;
}
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
}
.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 16px;
}
.location-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toggle-icon {
    width: 25px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content.active {
    max-height: 1000px;
}
.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding-bottom: 1rem;
}
.list-item {
    list-style: none;
    font-size: 15px;
}
.google-maps-link:focus {
    outline-width: 0px;
    outline-style: none;
}
.google-maps-link {
    color: #007bff;
    display: inline-block;
    margin-top: 10px;
}