    :root{
    --bg:#101214;
    --surface:#1c2024;
    --surface-2:#232931;
    --outline:#34394b;
    --text:#e5e5e5;
    --text-2:#9ca4af;
    --accent:#8f83d6;
    }

    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    user-select: none;
    -webkit-tap-highlight-color:transparent;
    scrollbar-width:none;
    -ms-overflow-style:none;
    font-family:Inter,sans-serif;
    }

    *::-webkit-scrollbar{
    display:none;
    }

    html,body{
    width:100%;
    height:100%;
    overflow:hidden;
    }

    body{
    position:relative;
    }

    .background{
    position:fixed;
    inset:0;
    background:linear-gradient(180deg,#161b20,#101214);
    }

    #scrim{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s;
    }

    #sheet{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    height:92vh;
    background:var(--surface);
    border-radius:32px 32px 0 0;

    display:flex;
    flex-direction:column;
    touch-action:none;
    will-change:transform;
    }

    #drag-area{
    height:32px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:grab;
    }

    #drag-area:active{
    cursor:grabbing;
    }

    .handle{
    width:34px;
    height:4px;
    border-radius:999px;
    background:#6f7680;
    }

    .sheet-header{
    height:72px;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-shrink:0;
    }

    .sheet-header h1{
    font-size:22px;
    font-weight:600;
    }

    .sheet-header p{
    margin-top:2px;
    color:var(--text-2);
    font-size:14px;
    }

    #addButton{
    width:48px;
    height:48px;
    border:none;
    border-radius:16px;
    background:var(--surface-2);
    color:var(--text);
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.2s;
    outline:none;

    display:none;
    }

    #addButton:hover{
    background:#2b313b;
    }

    .material-symbols-rounded{
    font-size:26px;
    }

    #sheetContent{
    flex:1;
    overflow:auto;
    padding:0 20px 24px;
    }

    #sheetContent::-webkit-scrollbar{
    display:none;
    }

    .card{
    background:var(--surface-2);
    border:1px solid var(--outline);
    border-radius:20px;
    padding:18px;
    margin-bottom:14px;
    color:var(--text);
    }

    .pane-header{
    height:32px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:grab;
    }

    .pane-header:active{
    cursor:grabbing;
    }

    .pane{
    background:transparent!important;
    box-shadow:none!important;
    }

    .backdrop{
    position:fixed!important;
    inset:0!important;
    background:rgba(10,12,14,.22)!important;
    backdrop-filter:blur(7px) saturate(.9)!important;
    -webkit-backdrop-filter:blur(7px) saturate(.9)!important;
    animation:backdropIn .25s ease-out;
    }

    @keyframes backdropIn{
    from{
        opacity:0;
        backdrop-filter:blur(0px);
        -webkit-backdrop-filter:blur(0px);
    }
    to{
        opacity:1;
        backdrop-filter:blur(7px);
        -webkit-backdrop-filter:blur(7px);
    }
    }

    .backdrop.opening{
    animation:backdropIn .25s ease-out forwards;
    }

    .backdrop.closing{
    animation:backdropOut .25s ease-out forwards;
    }

    @keyframes backdropOut{
    from{
        opacity:1;
        backdrop-filter:blur(7px) saturate(.9);
        -webkit-backdrop-filter:blur(7px) saturate(.9);
    }
    to{
        opacity:0;
        backdrop-filter:blur(0);
        -webkit-backdrop-filter:blur(0);
    }
    }

    .destroy-button {
    display: none;
    }