
body {
    background: #629031;
    /*height: 100vh;*/
    font-family: "Arial", sans-serif;
}

#head {
    height: 100%;
    padding-top: 64px;

    display: flex;
    /*flex-direction: column;*/
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    gap: 4px;
}

#url-input-container {
    display: inline-flex;
    align-items: center;
    border: 3px solid #F99C35;
    border-radius: 8px;
    padding: 6px 6px;
    background-color: #ffffff00;
    width: 52%;
    min-width: fit-content;
    gap: 0;
    font-size: 16px;

}

#url-input-container label {
    flex: 1;
    display: inline-flex;
    align-items: center;
}

#url-input-container span {
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    vertical-align: bottom;
    margin-right: 6px;
}

#url-input-container input[type="text"] {
    border: none;
    outline: none;
    padding-left: 0;
    margin-right: 10px;
    flex: 1;
    background-color: #ffffff00;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    vertical-align: bottom;
}

#url-input-container button {
    background-color: #ffffff00;
    color: #FFAF55;
    border: 2px solid #F99C35;
    border-radius: 8px;
    padding: 8px 26px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.1s, color 0.1s;
}

#url-input-container button:hover {
    background-color: #F99C35;
    color: #fff;
}

#url-input-container button:active {
    background-color: #D1812C;
    color: #fff;
}


.hidden {
    display: none;
}

.msgbox-overlay {
    background-color: #00000022;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*overflow: hidden;*/

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.msgbox-content-top {
    flex: 2;
}

.msgbox-content-bottom {
    flex: 6;
}

.msgbox-content {
    background-color: #629031;
    border: 2px solid #F99C35;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;

    padding: 12px;
    margin: 24px;
    /*border-radius: 4px;*/
    /*border: 3px dashed #00000000;*/
    width: auto;
    min-width: 230px;
    max-width: 360px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#msgbox-link .msgbox-content {
    max-width: 70%;
}

#msgbox-pending .msgbox-content {
    flex-direction: row;
    align-items: center;
    width: fit-content;
    min-width: fit-content;
    max-width: fit-content;
    padding: 0;
    padding-right: 24px;
}

#msgbox-pending img {
    width: 100px;
    height: 100px;
}

#msgbox-pending span {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

.msgbox-content p {
    color: #ffffff;
    margin: 4px;
    width: fit-content;
}

.msgbox-content div {
    margin-top: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.msgbox-content button {
    background-color: #ffffff00;
    color: #FFAF55;
    border: 2px solid #F99C35;
    border-radius: 8px;
    padding: 8px 26px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.1s, color 0.1s;
}

.msgbox-content button:hover {
    background-color: #F99C35;
    color: #fff;
}

.msgbox-content button:active {
    background-color: #D1812C;
    color: #fff;
}

a, a:visited, a span {
    color: #52FFCB;
    font-weight: bold;
    font-size: 13px;
    word-break: break-all;
}

.msgbox-content .msgbox-link-tr a,.msgbox-content a.msgbox-subtitle-trl {
    display: inline-block;
}

.msgbox-content button.span-button {
    display: inline-block;
    background-color: #ffffff00;
    color: #ffffff;
    border: 0 solid #F99C35;
    border-radius: 0px;
    border-bottom-width: 1px;
    padding: 2px 2px 0px 2px;
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.1s, color 0.1s;
}

.msgbox-content button.span-button:hover {
    background-color: #F99C35;
    color: #fff;
}

.msgbox-content button.span-button:active {
    background-color: #D1812C;
    color: #fff;
}

.msgbox-content div.msgbox-link-tr {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: flex-end;
    justify-content: center;
}

.msgbox-content div#msgbox-subtitle-tr {
    gap: 0px;
}

.msgbox-content .msgbox-link-tr span, .msgbox-content #msgbox-subtitle span {
    display: inline;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    vertical-align: bottom;
}

.msgbox-content i.blank {
    flex: 1;
}

.wide-button {
    padding: 2px 6px 0px 6px;
    margin-right: 6px;
}