.dialog{
    position: fixed;
    background-color: white;
    transform: translate(-50%, -50%);
    z-index: 100;
    top: 50%;
    left: 50%;
}

.dialog_title{
    color: white;
    background-color: #03A58E;
    font-weight: bold;
    width: 100%;
    font-size: clamp(20px, 1.5vw, 30px);
    text-align: center;
    padding: 1vw 0;
}

.dialog_msg{
    border-bottom: 1px solid gray;
    font-size: clamp(15px, 1.1vw, 25px);
    width: fit-content;
    margin: auto;
    padding: 5px 20px;
}

.dialog_button_group{
    display: flex;
    padding: 10px 0;
    width: 80%;
    margin: auto;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
}

.dialog_scroll{
    overflow-x: hidden;
    overflow-y: scroll;
}

.dialog_button{
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.dialog_cancel{
    background-color:rgb(121, 121, 121);
    color: white;
}

.dialog_success{
    background-color:#03A58E;
    color: white;
}

.dialog_text_box{
    height: 100px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

.dialog_table{
    width: 90%;
    font-size: clamp(12px, 0.8vw, 25px);
    margin: auto;
}.dialog_table th{
    text-align: center;
    white-space: nowrap;
}.dialog_table td{
    text-align: left;
}

@media (min-width: 768px) {
    .dialog{
        width: 60vw;;
        max-height: 80vh;
    }

    .dialog_view_filed{
        height: 80vh;
    }

    .dialog_table{
        width: 80%;
    }
}@media (max-width: 767px) {
    .dialog{
        width: 95vw;;
        max-height: 90vh;
    }

    .dialog_view_filed{
        height: 90vh;
    }

    .dialog_table{
        width: 90%;
    }
}

