#maybe-not-suitable {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000030;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#maybe-not-suitable .wrapper {
    padding: 2.5em;
    border: 3px double darkblue;
    background-color: white;
    width: 80%;
    max-width: 600px;
}

#maybe-not-suitable .title {
    font-size: 2em;
    text-align: center;
}
#maybe-not-suitable .title span {
    white-space: nowrap;
}

#maybe-not-suitable .messages {
    margin-top: 2em;
}
#maybe-not-suitable .messages .message {
    margin-top: 0.5em;
}

#maybe-not-suitable .url {
    text-align: center;
    font-size: 1.5em;
    margin-top: 0.5em;
}

#maybe-not-suitable .copy {
    text-align: center;
    margin-top: 0.5em;
}
#maybe-not-suitable .copy button {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    background-color: midnightblue;
    color: white;
    padding: 0.5em;
    border-radius: 10px;
}

#maybe-not-suitable .browsers {
    margin-top: 1em;
}
#maybe-not-suitable .browsers table {
    margin: 0 auto;
    font-size: smaller;
}
#maybe-not-suitable .browsers th, #maybe-not-suitable .browsers td {
    padding: 5px 10px;
    border: 1px solid darkblue;
    vertical-align: middle;
}
#maybe-not-suitable .browsers th {
    background-color: #0000ff20;
}
#maybe-not-suitable .browsers tr:last-of-type th {
    border-bottom: 3px double darkblue;
}

#maybe-not-suitable .browsers td.icon {
    text-align: center;
    border-right: none !important;
    padding-right: 0 !important;
}
#maybe-not-suitable .browsers td.name {
    border-left: none !important;
}

#maybe-not-suitable .close {
    margin-top: 3em;
    text-align: right;
    font-size: smaller;
    color: gray;
}

.overflow-hidden {
    overflow: hidden;
}
