        /* General styles */
        body {
            font-family: 'Outfit', sans-serif;
            margin: 0;
            padding: 0;
        }

        #map {
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            height: 100vh;
            width: 100%;
        }

        #mapsidebar {
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 10px;
        }

        .toggle-buttons {
            margin-bottom: 10px;
            width: 320px;
        }

        .toggle-buttons button {
            width: 150px;
            height: 30px;
            margin-bottom: 10px;
        }

        .dark-mode {
            background-color: #121212;
            color: #ffffff;
        }

        .dark-mode #mapsidebar {
            background-color: #1e1e1e;
            color: #ffffff;
        }

        /* Route table styles */
        #route-details {
            margin-top: 10px;
            overflow: hidden;
            padding: 10px;        }

        #route-details td {
            padding: 8px 25px;
            text-align: left;
            border-radius: 40px;
        }

        #route-details tr.point-row {
            background-color: #c3dfff;
            font-weight: bold;
        }



        #route-details .point-row {
            font-weight: bold;
        }

        #route-details .distance-row td {
            padding-left: 24px;
            font-size: 14px;
            color: #555;
        }

        #route-details .actions {
            display: flex;
            gap: 8px;
        }

        #route-details .actions button {
            padding: 6px 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }

        #route-details .actions .edit-button {
            background-color: #28a745;
            color: #ffffff;
        }

        #route-details .actions .delete-button {
            background-color: #dc3545;
            color: #ffffff;
        }

        #route-details .actions button:hover {
            opacity: 0.9;
        }

        #total-distance {
            margin-top: 10px;
            font-weight: bold;
            text-align: left;
        }

        #routetable {
            border: 1px solid #dbdbdb;
            background-color: #f5f5f5;
            border-radius: 10px;
            padding: 10px;
            margin-top: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }


        /*from METAR TAF */
        .controls-top-2 {
        top: 154px;
        }

        .controls {
        position: absolute;
        z-index: 5;
        }
        .controls-left {
        left: 0;
        }