/**
 * CockpitOS Light Theme - Centerplan SVG Responsive
 * 
 * Verantwortlichkeit: Responsive SVG Styling
 * 
 * @package CockpitOS_Light_Theme
 * @version 1.0.0
 */

.centerplan-map-container {
    position: relative;
    min-height: 400px;
}

.centerplan-map-wrapper {
    position: relative;
    touch-action: none;
    user-select: none;
    cursor: grab;
}

.centerplan-map-wrapper:active {
    cursor: grabbing;
}

.centerplan-svg {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .centerplan-map-container {
        min-height: 300px;
    }
    
    .centerplan-svg {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .centerplan-map-container {
        min-height: 250px;
    }
    
    .centerplan-svg {
        min-height: 250px;
    }
}

/* Prevent text selection during drag */
.centerplan-map-wrapper * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


