.almurtah-plot-plan-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.almurtah-plot-plan-wrapper {
    cursor: grab;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.almurtah-plot-plan-wrapper:active {
    cursor: grabbing;
}

.almurtah-plot-plan-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0ms; /* Panzoom handles movement */
}

.almurtah-plot-plan-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.almurtah-plot-plan-controls .control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.almurtah-plot-plan-controls .control-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.almurtah-plot-plan-controls .control-btn svg {
    display: block;
}

/* Dark mode support if applicable */
.elementor-ms-dark .almurtah-plot-plan-controls .control-btn {
    background: rgba(33, 37, 41, 0.8);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}
