#messagebox {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    left: 0;
    z-index: 99999;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: #181a1bBF;
}

.messageboxwrapper {
    background-color: #181a1bBF;
    max-width: 500px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 10px;
}

.messageboxheader {
    text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
}

.messageboxcontent {
    max-height: 250px;

    overflow-y: auto;
}

.messageboxbuttons {
    display: grid;
    grid-template-columns: repeat(5, fit-content(100%));
    gap: 20px;
}

.messageboxbuttonitem {
    padding: 10px;
    cursor: pointer;
    border: 1px solid;
    background-color: inherit;
}

.messageboxbuttonitem:hover {
    background-color: #181a1bBF;
}