.loc-widget-container-dcb099d0 {
    font-family: sans-serif;
    color: #333;
}
.loc-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}
.loc-main-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}
.loc-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 768px) {
    .loc-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}
.loc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.loc-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: border-color 0.3s;
}
.loc-card.active {
    border-color: #2b6cb0;
}
.loc-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.loc-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}
.loc-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}
.loc-detail i {
    color: #666;
    font-size: 14px;
    width: 14px;
    text-align: center;
}
.loc-address-clickable {
    cursor: pointer;
    color: #2b6cb0;
}
.loc-address-clickable:hover {
    text-decoration: underline;
}
.loc-divider {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 12px 0;
}
.loc-hours {
    justify-content: space-between;
}
.loc-hours-label {
    flex-grow: 1;
}
.loc-hours-time {
    font-weight: 500;
}

/* Map Panel */
.loc-map-panel {
    display: none; /* Hidden on mobile */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1;
    align-self: stretch; /* Map height matches list */
}
@media (min-width: 768px) {
    .loc-map-panel {
        display: block;
        position: sticky;
        top: 20px;
        min-height: 400px;
    }
}
.loc-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}
.loc-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 230, 230, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.loc-map-overlay.active {
    opacity: 1;
    pointer-events: auto;
}