#context-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 200;
    height: 100%;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.55);
}

#context-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: auto;
    background-color: #212121;
    border-radius: 1rem 1rem 0% 0%;
    display: flex;
    flex-direction: column;
    align-items: start;
    transform: translateY(100%);
}

.modal-transition {
    transition: transform 0.25s linear;
}

.context-handle {
    width: 2.5rem;
    height: 0.2rem;
    background-color: #8e8e8e;
    border-radius: 0.2rem;
    align-self: center;
    margin: 0.6rem 0 0 0;
}

#context-link {
    width: 100%;
    color: #8e8e8e;
    text-align: left;
    padding: 0 0.5rem;
    overflow-wrap: break-word;
    box-sizing: border-box;
}
