   .main {
            width: 95%;
            margin-left: 3%;
            justify-content: center;
        }
        .image-preview {
            width: 200px;
        }
        .image-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        #photoCards {
            max-height: 500px;
            overflow-y: auto;
            margin-top: 15px;
            padding: 10px;
        }
        .photo-card {
            cursor: pointer;
            margin-bottom: 10px;
            padding: 10px;
            transition: all 0.2s;
        }
        .photo-card:hover {
            background-color: #f8f9fa;
        }
        .photo-card img {
            width: 100%;
            height: auto;
            border-radius: 3px;
        }
        .photo-card.active {
            background-color: #e9f7fe;
            border-color: #86b7fe;
        }
        .path-info {
            margin-top: 10px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        #map {
            height: 500px;
        }
        .time-info {
            margin-top: 10px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        .loading-spinner {
            display: none;
            margin-top: 10px;
        }
        .fixed-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .fixed-img {
            height: 200px;
            }
        }