#rc-stop-map-container {
    width: 100%;
    max-width: 600px;
    height: 400px;
    position: relative;
    cursor: pointer;
    }

    #rc-map-static,
    #rc-destination-stop-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

    #rc-destination-stop-map {
    display: none;
    }

    /* Skeleton estilo shimmer */
    .rc-map-skeleton {
        background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
        background-size: 200% 100%;
        animation: shimmer 1.2s infinite;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }