.demomusic-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgb(0 0 0 / .7)
}

.demomusic-modal__panel {
    width: min(100%, 25rem);
    padding: 1.5rem;
    border-radius: 1rem;
    background: #252525;
    box-shadow: 0 0 0 1px #3a3a3a, 0 1rem 3rem rgb(0 0 0 / .45);
    color: #eee
}

.demomusic-modal__panel h2 {
    margin: 0;
    color: #e5a16b;
    font: 700 1.45rem "Trebuchet MS", Arial, sans-serif
}

.demomusic-modal__panel p {
    margin: .7rem 0 1.35rem;
    color: #d9d4d3;
    font: .95rem/1.5 Arial, sans-serif
}

.demomusic-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: .6rem
}

.demomusic-modal__actions button {
    border: 0;
    border-radius: 99px;
    padding: .75rem 1rem;
    font-weight: 700;
    cursor: pointer
}

.demomusic-modal__cancel {
    background: #454545;
    color: #eee
}

.demomusic-modal__confirm {
    background: #9c5f32;
    color: #261a13
}

.demomusic-modal__actions button:focus-visible {
    outline: 3px solid #e5a16b;
    outline-offset: 2px
}

.demomusic-toast {
    position: fixed;
    z-index: 1001;
    left: 50%;
    bottom: 1.5rem;
    max-width: min(360px, calc(100% - 2rem));
    padding: .8rem 1rem;
    border: 1px solid #b56e31;
    border-radius: .65rem;
    background: #1b1b1b;
    color: #fff;
    box-shadow: 0 .5rem 1.4rem #000;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 1rem);
    transition: .2s
}

.demomusic-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0)
}