/* Bonsai Modal (BDC) */
.bdc-modal-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,.65);
display: none;
align-items: center;
justify-content: center;
z-index: 9999;
}


.bdc-modal-overlay.is-open { display: flex; }


.bdc-modal {
position: relative;
width: min(92vw, 900px);
max-height: 86vh;
background: #000; /* dark to blend with video */
border-radius: 1rem;
box-shadow: 0 10px 30px rgba(0,0,0,.5);
overflow: hidden;
}


.bdc-modal--content {
position: relative;
padding: 0; /* edge-to-edge video */
max-height: inherit;
overflow: auto;
background: #000;
}


.bdc-modal-close {
position: absolute;
top: .5rem;
right: .5rem;
z-index: 2;
background: var(--green); /* Bonsai brand */
color: #fff;
border: 0;
border-radius: .5rem;
padding: .5rem .75rem;
cursor: pointer;
line-height: 1;
font-size: 14px;
}


.bdc-hidden { display: none !important; }