.bottom-sheet {
    position: fixed;
    bottom: 0;
    margin: 0 auto;
    transform: translate(-50%, 100%);
    max-width: 480px;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* padding: 20px; */
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.bottom-sheet.active {
    transform: translateY(0);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.drag-handle {
    width: 100%;
    padding: 0rem 0.5rem 0.5rem 0.5rem;
    height: fit-content;
    /* border: 1px solid black; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.drag-handle-icon {
    margin: 0;
    /* padding: 0.3rem 5rem; */
    width: 45px;
    height: 3px;
    background: rgba(0, 0, 0, 0.242);
    border-radius: 5px;
    /* margin: 0 auto 10px; */
    cursor: grab;
    position: relative;
    text-align: center;
}

.drag-handle-icon::before {
    /* content: ""; */
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    color: gray;
}
