.webora-window{

    position:fixed;

    right:30px;

    bottom:120px;

    width:390px;

    height:650px;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    display:none;

    flex-direction:column;

    box-shadow:

        0 25px 60px rgba(0,0,0,.20);

    z-index:999999;

    animation:weboraOpen .25s ease;

}

.webora-window.active{

    display:flex;

}

.webora-header{

    height:85px;

    background:linear-gradient(

        135deg,

        #2563eb,

        #4f46e5

    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:20px;

}

.webora-header-left{

    display:flex;

    align-items:center;

    gap:15px;

}

.webora-avatar{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#fff;

    color:#2563eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:18px;

}

.webora-title{

    font-size:18px;

    font-weight:700;

}

.webora-status{

    margin-top:4px;

    display:flex;

    align-items:center;

    gap:8px;

    font-size:13px;

}

.status-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#22c55e;

}

.webora-close{

    border:none;

    background:none;

    color:#fff;

    font-size:34px;

    cursor:pointer;

}