/**
 * Roadtrip Map Styles
 */

/* Map container styles */
.map-aside-container {
    height: 100vh;
    overflow: hidden;
}

.content-column {
    height: 100vh;
    overflow-y: auto;
}

/* Roadtrip block styles */
.roadtrip-place {
    background: rgba(0, 124, 186, 0.05);
}

.roadtrip-place.active {
    background: white;
    border-left-color: var(--rov-green);
}

/* Popup styles */
.roadtrip-popup {
    max-width: 250px;
}

.roadtrip-popup h4 {
    margin: 0 0 10px 0;
    color: #007cba;
    font-size: 16px;
    font-weight: bold;
}

.roadtrip-popup p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.roadtrip-popup .stop-content {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.roadtrip-popup .stop-content p {
    color: #333;
    line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .map-aside-container {
        height: auto;
    }

    .content-column {
        height: auto;
        overflow-y: visible;
    }

    .roadtrip-popup {
        max-width: 200px;
    }

    .roadtrip-popup h4 {
        font-size: 14px;
    }

    .roadtrip-popup p {
        font-size: 12px;
    }
}
