/* PickStream Workspace Module */
.ps-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.ps-modal-box{
    background:#fff;
    width:500px;
    max-width:90%;
    border-radius:12px;
    padding:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.2);
}

.ps-modal-box h2{
    margin-top:0;
}

.ps-modal-box label{
    display:block;
    margin-top:18px;
    margin-bottom:6px;
    font-weight:600;
}

.ps-modal-box input,
.ps-modal-box textarea,
.ps-modal-box select{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
}

.ps-modal-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:24px;
}