.callContainer {
position: fixed;
inset: 0;
background: #000;
overflow: hidden;
}
.remoteVideo {
width: 100%;
height: 100%;
object-fit: cover;
}
.localVideo {
position: absolute;
bottom: 110px;
right: 16px;
width: 25vw;
max-width: 120px;
aspect-ratio: 3 / 4;
object-fit: cover;
border-radius: 8px;
border: 2px solid rgba(255, 255, 255, 0.5);
z-index: 10;
background: #111;
}
.statusOverlay {
position: absolute;
top: 24px;
left: 0;
right: 0;
text-align: center;
color: #fff;
font-size: 4vw;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
z-index: 10;
pointer-events: none;
}
.controlBar {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
gap: 32px;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
z-index: 20;
}