@charset "UTF-8";

dialog {
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    background: hsla(0, 100%, 0%, .7);
    width: 100vw;
    height: 100dvh;
    .inner {
        display: flex;
        flex-direction: column;
        gap: 16px;
        z-index: 9999;
        width: 50%;
        min-width: 300px;
        max-width: 500px;
        border-radius: 5px;
        background: #000;
        height: calc(100dvh - 200px);
    }
    .inner .headline {
        display: flex;
    }
    .inner .headline button {
        border-radius: 5px 0 0 0;
        background: #000;
        font-size: 3rem;
        color: #fff;
        border: none;
    }
    .inner .headline .label {
        border-radius: 0 5px 0 0;
        font-size: 1.4rem;
        align-content: center;
        line-height: 1;
        padding-inline: 16px;
        flex-grow: 1;
        background: var(--col2-20);
        color: #fff;
    }
    .inner .contents {
        padding: 0px 8px 8px;
        overflow-y: auto;
    }
    .inner .contents form.single {
        max-width: none !important;
        width: 100%;
    }
}

dialog.close {
    display: none;
}