.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 999;
}

.sheet-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111;
    color: #fff;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    padding: 15px;
}

.bottom-sheet.active {
    transform: translateY(0);
}

.sheet-handle {
    width: 45px;
    height: 5px;
    background: #444;
    border-radius: 10px;
    margin: 0 auto 12px auto;
}

.sheet-content {
    font-size: 14px;
    line-height: 1.5;
}