#GlobalToast {
    position: absolute !important;
    top: 7vmin !important;
    right: 3vmin !important;
    z-index: 999999999;
    max-width: fit-content !important;
    max-height: fit-content !important;
    min-width: 20vmin !important;
    min-height: 10vmin !important;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 2px lightgray !important;
}

#GlobalToast_header {
    border-bottom: 1px solid black;
    padding: 5px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

#GlobalToast_body {
    padding: 5px !important;
    width: 100% !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

#GlobalToast_body span {
    width: 100% !important;
    padding: 2px !important;
}