<>
.fullscreen-embed {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: white;
z-index: 99999;
display: flex;
flex-direction: column;
overflow: hidden;
border: none;
}
.embed-header {
background: #2c3e8f;
color: white;
padding: 12px 20px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 16px;
flex-shrink: 0;
}
.embed-close {
background: rgba(255,255,255,0.2);
border: none;
color: white;
border-radius: 50%;
cursor: pointer;
width: 32px;
height: 32px;
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
transition: 0.2s;
}
.embed-close:hover {
background: rgba(255,255,255,0.4);
}
.embed-frame {
flex: 1;
width: 100%;
border: none;
}
>