/* View Controls - owned by UIControlsManager.js */

.view-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.icon-button {
    background: rgba(45, 45, 77, 0.7);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-button:hover {
    background: rgba(61, 61, 109, 0.7);
    transform: translateY(-2px);
}

.icon-button.active {
    background: rgba(100, 255, 218, 0.3);
    color: #64ffda;
}
