.error-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Màu nền đen mờ */
    z-index: 1051;
}
/* CSS để tùy chỉnh giao diện của tiêu đề dialog */
.error-dialog-title {
    margin: 0 0 10px 0;
    display: flex; /* Hiển thị tiêu đề theo chiều ngang */
    align-items: center; /* Căn chỉnh các thành phần theo trục chính */
    font-size: 18px; /* Kích thước của biểu tượng */
}
/* CSS để tùy chỉnh giao diện của biểu tượng */
.error-dialog-title  i {
    margin-right: 20px; /* Khoảng cách giữa biểu tượng và tiêu đề */
    font-size: 24px; /* Kích thước của biểu tượng */
}
/* CSS để tùy chỉnh giao diện của nút "OK" */
/* CSS để tùy chỉnh giao diện của nút "OK" khi hover */
.error-dialog button:hover {
    background-color: #45a049;
}
.error-dialog .dialog-title {
    background-color: #F1F1F1; /* Màu tiêu đề */
    font-weight: bold;
}
.error-dialog .dialog-buttons {
    text-align: right; /* Canh chỉnh nút "OK" sang phải */
}
.error-dialog .dialog-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff; /* Màu nền trắng của dialog */
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 20vw;
    width: 100%;
}
.error-dialog-title {
    margin: 0;
    font-size: 20px;
}
.dialog-body, .dialog-title {
    padding: 1rem;
}
.dialog-body {
    font-size: 16px;
    white-space: pre-line;
    max-height: 70vh;
    overflow-y: auto;
}
.dialog-buttons {
    padding: 0 1rem 1rem 1rem;
}
.fa-times-circle {
    color: red;
}
.fa-info-circle, .fa-question-circle {
    color: blue;
}
.error-dialog .btn {
    margin-left: .5vw;
}

.btn-find{
    font-size: 16px;
    background-color: #EBEBEB;
    min-width: 87px; 
}
.margin-auto{
   margin-left: 10px;
}
.btn-save{
    min-width: 60px;
}
.btn-h40{
    height: 40px;
}
.btn-membertop{
    height: 40px;
    min-width: 110px;
}
.btn-memberbottom{
    height: 40px;
    min-width: 65px;
}
.btn_ok {
    padding: 0.375rem 2.6rem;
}