/* css/monitor.css */
#room {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    position: relative;
    padding: 0;
    overflow: hidden;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M0 0 L0 24 L6 18 L12 30 L16 28 L10 16 L18 16 Z' fill='%23FFB000' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E") 0 0, auto;
}

#monitor-assembly {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.screen-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    background-color: #000;
}

.monitor-frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/frame-monitor.png');
    background-size: 100% 100%; /* Stretch frame to fit viewport */
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none; /* Let clicks pass through to the screen */
    z-index: 100;
}
