.stadium-viewer-container {
    position: relative;
    overflow: hidden;
}

.svg-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-origin: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-out;
}

.svg-wrapper svg {
    width: 100%;
    height: 100%;
    display: block;
}

.controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.controls .btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: none;
    z-index: 1000;
}

.sector-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sector-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transition: transform 0.2s ease-out;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.seat {
    cursor: pointer;
    transition: all 0.2s;
}

.seat:hover {
    fill: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .controls {
        bottom: 10px;
        right: 10px;
    }

    .controls .btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .btn-close {
        top: 10px;
        right: 10px;
    }
}
