/** Css pro pudorys
    */
    .arrow-icon {
            background: none;
            pointer-events: none;
            width: 40px;
            height: 40px;
    }
    .arrow-inner {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
    }
    .leaflet-fade-out {
            transition: opacity 0.5s ease-out;
            opacity: 0;
    }

    .point-dot {
            width: 12px;
            height: 12px;
            background: red;
            border: 2px solid white;
            border-radius: 50%;
            box-sizing: border-box;
            transition: transform 0.3s ease;
    }
    .point-dot:hover {
            transform: scale(1.5);
    }

    #map {
        height: 600px;
        width: 100%;
    }

    /* Styl pro vlastní control */
    .leaflet-control-floorplans {
        background: white;
        padding: 6px;
        border-radius: 4px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
        max-width: 250px;
        font-family: Arial, sans-serif;
        user-select: none;
    }

    .floorplans-button {
        background: #007bff;
        border: none;
        color: white;
        padding: 6px 10px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        width: 100%;
        text-align: center;
    }

    .floorplans-thumbnails {
        margin-top: 8px;
        display: none;
        gap: 8px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .floorplans-thumbnails img {
        height: 50px;
        cursor: pointer;
        border: 2px solid transparent;
        border-radius: 4px;
        transition: border-color 0.3s;
        display: inline-block;
    }

    .floorplans-thumbnails img.active {
        border-color: #007bff;
    }


    .floorplan-info {
    margin-top: 15px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    }

   
