.glb-parallax-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.glb-parallax-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Admin styles */
.glb-parallax-container {
    cursor: grab;
}

.glb-parallax-container:active {
    cursor: grabbing;
}

/* Control Panel Styles */
.glb-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
}

.glb-controls-toggle {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.glb-controls-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: rotate(90deg);
}

.glb-controls-panel {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.glb-controls-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.glb-control-group {
    margin-bottom: 12px;
}

.glb-control-group:last-child {
    margin-bottom: 0;
}

.glb-control-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.glb-control-group input[type="range"] {
    width: 100%;
    margin: 5px 0;
}

.glb-control-group input[type="checkbox"] {
    margin-right: 5px;
}

.glb-control-group input[type="color"] {
    width: 100%;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.scale-value,
.intensity-value {
    font-weight: bold;
    color: #0073aa;
    float: right;
}

.reset-btn {
    width: 100%;
    padding: 8px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.reset-btn:hover {
    background: #005a87;
}

/* Responsive */
@media (max-width: 768px) {
    .glb-parallax-container {
        height: 400px !important;
    }
    
    .glb-controls-panel {
        right: -10px;
    }
}