/* Override massage box 視窗大小 */
.jq-toast-wrap {
    width: 250px !important; /* 訊息視窗的寬度 */
}

.jq-toast-single {
    height: auto; /* 訊息視窗的高度 */
    line-height: 30px;
    font-size: 11pt;
    /*background-color: red;*/
}

.jq-toast-single h2 {
    font-size: 12pt;
}

.messagebox-button {
    width: 100%;
    display: flex;
    justify-content: flex-end; 
    /* 訊息視窗內button的位置(置左: flex-start/中: center/右: flex-end) */
}

.messagebox-button button {
    background: #034744; /* 訊息視窗內button的顏色 */
    color: #fff;
    padding: 2px 10px;
    margin: 10px 5px 0 0;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
}

/* 訊息視窗的底色 要在util.js內設定*/