@font-face {
    font-family: "Prompt";
    src: url('../Fonts/Prompt/Prompt-Regular.ttf');
}

body, html, .container {
  overflow: visible;
  position: relative;
  z-index: auto;
}

body{
    background-color: #fff;
}

/* main spacing */
/* ------------------------------------------------------------------------------------------- */
.con_spacing{
    padding: 0rem 16rem;
}

@media screen and (min-width: 0px) and (max-width: 1023px){
    .con_spacing{
        padding: 0rem 2rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1360px){
    .con_spacing{
        padding: 0rem 7rem;
    }
}


/* tag I color */
.ic_green i{
 color: #72d45f;
}
/* absolute logo */
/* ------------------------------------------------------------------------------------------- */
.abs_logo{
    position: fixed;
    top: 5;
    right: 35;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    /* background-color: #3333333f; */
    color: rgba(34, 38, 42, 0.418);
    font-size: 30px;
    border-radius: 5px;
    z-index: 5;
}
@media (max-width: 1023px) { 

    .abs_logo{
        top: 0;
        right: 5;
    }

}

/* menu_toggle */
/* ------------------------------------------------------------------------------------------- */
.btn_home{
    position: fixed;
    width: 45px;
    height: 45px;
    padding-top: 15px;
    text-align: center;
    cursor: pointer;
    top: 15;
    left: 75;
    background-color: #3333333f;
    color: #ffffff;
    border-radius: 5px;
    transition: 0.1s;
    z-index: 5;
}
.btn_home:hover{
    background-color: #3333339c;
}
.btn_home i{
    color: #fff;
}
.btn_top{
    position: fixed;
    width: 45px;
    height: 45px;
    padding-top: 15px;
    text-align: center;
    cursor: pointer;
    bottom: 15;
    right: 15;
    background-color: #3333333f;
    color: #ffffff;
    border-radius: 5px;
    transition: 0.1s;
    z-index: 5;
}
.btn_top:hover{
    background-color: #3333339c;
}
.btn_top i{
    color: #fff;
}
.toggle_btn{
    position: fixed;
    width: 45px;
    height: 45px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    top: 15;
    left: 15;
    background-color: #3333333f;
    color: #ffffff;
    border-radius: 5px;
    transition: 0.1s;
    z-index: 5;
}
.toggle_btn:after {
    content: "\2630";
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    
}
.toggle_btn.active:after {
    content: "\003C";
}

.toggle_btn.active, .toggle_btn:hover{
    background-color: #3333339c;
}

.toggle_menu{
    position: fixed;
    width: 300px;
    height: 100vh;
    margin-left: -300px;
    top: 0;
    left: 0;
    background-color: #f7f7f7;
    transition: 0.3s;
    /* border-right: 1px solid #eee; */
    z-index: 4;
}

.toggle_menu_header{
    text-align: center;
    width: 100%;
    padding: 37px 0px;
    color: #000;
    background-color: #f7f7f7;
    border-bottom: 1px solid #eee;
}

.toggle_menu ul{
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    width: 100%;
}

.toggle_menu a{
    display:block;
    width: 100%;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    transition: 0.1s;
    border-bottom: 1px solid #eee;
}
.toggle_menu a:hover{
    background-color: #757575;
    color: #fff;
}

.toggle_menu.active{
    margin-left: 0px;
}

@media (max-width: 1023px) { 

    .toggle_menu{
        width: 100%;
        margin-left: -100%;
    }

    .toggle_menu.active{
        margin-left: 0px;
    }

}

/* btn_color */
/* ------------------------------------------------------------------------------------------- */
.btn{
    /* border-radius: 100px; */
    border-radius: 7px;
}

.btn.btn-info{
    color :#fff !important;
}

/* animation */
/* ------------------------------------------------------------------------------------------- */

.animate{
    position: relative;
    animation-duration: 1.4s;
    animation-fill-mode: forwards;
}
.animate.down{
    animation-name: AnimateDown;
}
.animate.up{
    animation-name: AnimateUp;
}
.animate.left{
    animation-name: AnimateLeft;
}
.animate.right{
    animation-name: AnimateRight;
}
@keyframes AnimateDown {
    from {top: -150px; opacity: 0;}
    to {top: 0px; opacity: 1;}
}

@keyframes AnimateUp {
    from {top: 150px; opacity: 0;}
    to {top: 0px; opacity: 1;}
}

@keyframes AnimateLeft {
    from {left: -150px; opacity: 0;}
    to {left: 0px; opacity: 1;}
}

@keyframes AnimateRight {
    from {right: -150px; opacity: 0;}
    to {right: 0px; opacity: 1;}
}

/* banner */
/* ------------------------------------------------------------------------------------------- */

#banner{
    height: 100vh;
    overflow: hidden;
}

.bn_content{
    position: relative;
    width: auto;
    height: 100vh;
    padding: 10px;
    top: 0;
    background-color: #fff;
}

.bn_content hr{
    height: 3px;
    width: 20%;
    background-color: #fff;
}
.bn_content hr.black{
    background-color: #000000;
}

@media screen and (min-width: 0px) and (max-width: 1023px){
    .bn_content{
        padding-top: 70px;
        overflow: scroll;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1366px){
    .bn_content{
        padding-top: 70px;
        overflow: scroll;
    }
}


/* align */
/* ------------------------------------------------------------------------------------------- */
.tx_center{
    text-align: center;
}

.tx_blue{
    color: #A5CFFF;
}

.tx_orange{
    color: #ED5B05;
}

/* icon circle */
/* ------------------------------------------------------------------------------------------- */

.icon_circle{
    width: 50px;
    height: 50px;
    line-height: 45px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    background-color: #313131;
    color: #fff;
}

@media (max-width: 1023px) { 

    .icon_circle{
        width: 50px;
        height: 50px;
    }

}

/* background-color */
/* ------------------------------------------------------------------------------------------- */

.bg_gray{
    background-color: #fafafa;
}

.bg_blue{
    background-color: #A5CFFF;
    color: #fff;
}
.bg_orange{
    background-color: #ED5B05;
    color: #fff;
}
.bg_dark{
    background-color: #26292B;
    color: #fff;
}

.hr_white{
    background-color: #fff;
    color: #fff;
}

/* h1-5 color */
/* ------------------------------------------------------------------------------------------- */

.hc_orange{
    color: #fd5d1e;
}

.hc_blue{
    color: #4d8bff;
}

/* img header */
/* ------------------------------------------------------------------------------------------- */

.img_text{
    position: absolute;
    top: 80px;
    right: 0px;
    padding: 20px;
    /* box-shadow: 0px 0px 3px #3f3f3f; */
}
.img_text hr{
    width: 100%;
    height: 5px;
    background-color: #fff;
    text-align: left;
}

.img_box{
    width: 89%;
    height: 450px;
    overflow: hidden;
    background-color: #ccc;
}
.img_box img{
    width: 100%;
    height: auto;
}

@media (max-width: 1023px) { 

    .img_box{
        width: 100%;
        height: auto;
    }

    .img_text{
        top: 20px;
        right: 0px;
        padding: 20px;
    }

}

/* box_package */
/* ------------------------------------------------------------------------------------------- */
.box_package{
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
}

.box_package ul{
    list-style-type: none;
    padding: 0px;
}

.box_package li{
    width: 100%;
    padding: 15px 0px;
    border-bottom: 1px solid #E5E5E5;
    transition: 0.3s;
}
.box_package li:hover{
    background-color: #f5f5f5;
}


/* box_example */
/* ------------------------------------------------------------------------------------------- */
.box_ex{
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    overflow: hidden;
}

.box_ex_img{
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #eee;
    border-bottom: 1px solid #EBEBEB;
}
.box_ex_img img{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1023px){
    .box_ex_img{
        height: 180px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1366px){
    .box_ex_img{
        height: 150px;
    }
}


/* div content alway height */
/* ------------------------------------------------------------------------------------------- */
.box_ct {
    position: relative;
    margin-top: 30px;
    /* padding-bottom: 85%; */
    padding-bottom: 30%;
    height: 0;
    /* background-color: #cfcfcf; */
    overflow: hidden;
}

.box_ct div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box_port {
    position: relative;
    /* padding-bottom: 85%; */
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30%;
    height: 0;
    /* background-color: #cfcfcf; */
    overflow: hidden;
}

.box_port div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1023px){
    .box_ct {
        margin-top: 5px;
        padding-bottom: 55%;
        overflow: visible;
    }
    .box_port {
        margin-top: 5px;
        padding-bottom: 35%;
        overflow: visible;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1366px){
    .box_ct {
        padding-bottom: 50%;
        overflow: visible;
    }
    .box_port {
        margin-top: 5px;
        padding-bottom: 35%;
        overflow: visible;
    }
}

.btn-default {
    border: 1px solid #ced4da;
    border-radius: 7px;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: auto;
    cursor: pointer;
    background-color: white;
    font-size: 14px;
    padding: 7px;
    box-sizing: border-box;
    transition: 0.1s;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* background-color : #28A745; */
    background-color : #FFFFFF;
    color: #555;
}

.btn-default:hover {
    color: #F06445 !important;
    border-color: #F06445;
    background-color: white;
}

/* .btn-default{
    border: 1px solid #F6F1E9;
    background-color: #fff !important;
} */


.btn-orange{
    color: #fff !important;
    background-color: #F06445 !important;
}

.btn-orange i{
    color: #fff !important;
}

.btn-orange:hover{
    background-color: #df5435 !important;
}


h1,h2,h3,h4,h5,h6{
    /* color : #17A2B8; */
    /* color : #643208; */
    color : #F06445;
    
}

.login-wrapper {
    height: 100vh;
}
.login-box {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.login-box input{
    border-radius: 0px !important;
}

.login-box a {
    transition: 0.1s;
    cursor: pointer;
}

.login-box .input-group .form-control,
.login-box .input-group .input-group-prepend .input-group-text,
.btn {
    border-radius: 7px !important;
}

.login-box .input-group .input-group-prepend .input-group-text {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.login-box .input-group .form-control {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.input_validation_alert {
    border: 1px solid #f11f1f !important;
}

/* .input_validation_alert::placeholder {
  color: #f11f1f !important;
  opacity: 1;
} */

#loading{
    z-index: 9999 !important;
}

/* ตัวหมุน download */
.loading-overlay {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0, 0, 0, 0.363); /* สีเทาดำโปร่งแสง */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-spinner {
  width: 3rem;
  height: 3rem;
}

.spinner-border.custom-color {
  color: #EDF2F9;
}

.custom_navbar{
    border-bottom: 1px solid #ccc;
    padding: 12px 00px;
    position: fixed;
    z-index: 1000;
    background-color :#fff !important;
}

.navbar_btn {
    border: 1px solid #F6F1E9;
    border-radius: 7px;
    display: inline-flex;        /* ใช้ flexbox */
    align-items: center;         /* จัดไอคอนให้อยู่กึ่งกลางแนวตั้ง */
    justify-content: center;     /* จัดกึ่งกลางแนวนอน */
    width: 40px;                 /* กำหนดขนาดปุ่ม (ปรับตามต้องการ) */
    height: 40px;
    cursor: pointer;
    background-color: white;     /* สีพื้นตามชอบ */
    padding: 0;                  /* ลบ padding ที่ไม่จำเป็น */
    box-sizing: border-box;      /* ให้นับ border ในขนาดปุ่ม */
    transition: 0.1s;
    text-decoration: none !important;
}

.navbar_btn i{
    color: #4e2504 !important; 
}

.navbar_btn.danger{
    color: #fff !important;
    background-color: #F06445 !important;
}

.navbar_btn.danger i{
    color: #fff !important;
}

.navbar_btn.danger:hover{
    background-color: #df5435 !important;
}

#menu {
    position: relative;
    padding: 0;
    margin: 0;
}

#menu nav {
    position: fixed !important;
    width: 13vw !important;
    top: 56px;
    left: inherit; /* หรือใช้ค่าที่สัมพันธ์กับตำแหน่ง col */
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    background-color: #fff;
    box-sizing: border-box;
}


.menu_active{
    background-color : #F06445;
    color :#fff !important;
    border-radius: 7px;
    transition: 0.2s;
}

.menu_active:hover{
    background-color: #df5435 !important;
    color :#fff !important;
}



.box_landing{
    padding-top: 5.5vh !important;
}

main {
  position: relative;
  overflow: visible !important;
  z-index: 1; /* หรือต่ำกว่า dropdown */
}

.card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #F6F1E9;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.06);
  padding: 20px;
  overflow: visible;
  z-index: 1 !important;
  display: block
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: transparent;
  /* background-color: #FDFCFB; */
  /* background-color: #ffc125; */
  z-index: 0; /* ทำให้สีอยู่ "ล่าง" */
}

.card h1, 
.card h2, 
.card p, 
.card .card-header {
  position: relative;
  z-index: 1;
}


.card-header {
    border :0px !important;
    padding: 0px !important;
    background-color: transparent !important;
    margin-bottom: 28px;
    color: #643208;
    font-weight: bold;
}

.card-footer {
    border-top :0px solid #DEE2E6 !important;
    padding-top : 10px !important;
    padding-bottom : 0px !important;
    padding-left : 0px !important;
    padding-right: 0px !important;
    margin : 0px !important;
    background-color: transparent !important;
    color: #643208;
    font-weight: normal;
    text-align: right;
}

.badge-default{
    border: 1px solid #ced4da;
    background-color : #FFFFFF;
    color: #555;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.card-menu{
    border: 1px solid #ced4da;
    border-radius: 7px;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: white;
    font-size: 14px;
    padding: 0;
    box-sizing: border-box;
    transition: 0.1s;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-menu.success {
    /* background-color : #28A745; */
    background-color : #FFFFFF;
    color: #555;
}

.card-menu.success:hover {
    color: #F06445 !important;
    border-color: #F06445;
    background-color: white;
}

.card .pagination .page-item .page-link {
  color: #555; /* สีตัวอักษรเทาเข้ม */
  border: 1px solid #ced4da; /* ขอบสีเทาอ่อนแบบ Bootstrap outline */
  border-radius: 0.25rem; /* ขอบโค้งมนแบบ Bootstrap */
  margin: 0 2px;
  background-color: white;
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* hover */
.card .pagination .page-item:hover .page-link {
  color: #F06445;
  border-color: #F06445;
  background-color: white;
  text-decoration: none;
}

/* active */
.card .pagination .page-item.active .page-link {
  color: #F06445;
  border-color: #F06445;
  background-color: white;
  cursor: default;
  box-shadow: none;
}


/* ถ้าต้องการเปลี่ยน background ด้วยเวลา active */
.card .pagination .page-item.active .page-link {
  background-color: #F06445;
  color: #fff;
  border-color: #F06445;
}


.breadcrumb{
    background-color :#fff;
    padding: 0px !important;
}

.breadcrumb li a{

    background-color :#fff;
    border: 1px solid #f6f1e900;
    padding: 5px 10px !important;
    border-radius: 7px;
    color: #643208;
    text-decoration: none;
    transition: 0.1s;
}

.breadcrumb li a:hover{
    color: #fff;
    background-color :#F06445;
    border: 1px solid #F6F1E9;
}

.breadcrumb .active a {
    color: #fff;
    background-color :#F06445;
    border: 1px solid #F6F1E9;
    padding: 5px 10px !important;
    border-radius: 7px;
    /* color: #643208;
    text-decoration: none; */
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.fixed-table {
    table-layout: fixed;   /* ความกว้างตามที่กำหนดไว้ ไม่ขยายตามเนื้อหา */
    min-width: 970px;      /* ป้องกันตารางหด */
    white-space: nowrap;   /* ไม่ให้ตัดบรรทัด */
}

.table-custom{
    font-weight: normal;
}

.table-custom tbody td{
    vertical-align: middle !important;
}

.table-custom tbody td:last-child{
    text-align: right;
}


/* ปุ่มเดิม */
.table-custom .edit, 
.table-custom .delete {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-decoration: none !important;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* สีของแต่ละปุ่ม */
.table-custom .edit,
.table-custom .delete {
    background-color: white;
    color: #555;
}

/* hover effects */
.table-custom .edit:hover,
.table-custom .delete:hover {
    color: #F06445;
    border-color: #F06445;
    background-color: white;
}

/* Tooltip */
.table-custom .edit::after,
.table-custom .delete::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%; /* อยู่ด้านบนปุ่ม */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 999;
}

/* Tooltip arrow */
.table-custom .edit::before,
.table-custom .delete::before {
    content: "";
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
    z-index: 999;
}

/* Show tooltip on hover */
.table-custom .edit:hover::after,
.table-custom .edit:hover::before,
.table-custom .delete:hover::after,
.table-custom .delete:hover::before {
    opacity: 1;
    visibility: visible;
}


/* success button ถ้ายังต้องการเก็บไว้ */
.table-custom .success {
    color: #fff !important;
    background-color: #28A745;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.table-custom th {
  line-height: 2; /* ปรับค่า line-height ของ th */
}

.table-custom td {
  line-height: 1; /* ปรับค่า line-height ของ td */
  padding: 7px 0px;

}

.table-custom thead{
    background-color :transparent;
    color :#643208;
}

.modal .btn {
    border: 1px solid #ced4da; /* ขอบสีเทาอ่อน */
    border-radius: 0.25rem;     /* ขอบโค้ง */
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* สีของปุ่ม delete */
.modal .btn {
    background-color: white;
    color: #555;
}

/* hover */
.modal .btn:hover {
    color: #F06445;
    border-color: #F06445;
    background-color: white;
}


.modal-content{
    border-radius: 15px;
}

#modal_form .modal-dialog{
    max-width: 60vw;
    border-radius: 17px !important;
}

@media (max-width: 576px) {
    #modal_form .modal-dialog{
        max-width: 80vw;
    }
}

.card, #map {
  pointer-events: auto !important;
  user-select: auto !important;
}

#map {
  position: relative;
  height: 80vh;  /* กำหนดขนาด map ให้มีความสูง */
  width: 100%;
  pointer-events: auto; /* เปิด event ให้ map รับ event */
  flex-grow: 1; /* ให้ map ขยายเต็มพื้นที่ flex container ถ้าอยู่ใน flex */
  z-index: 1;
  background-color :#ccc;
}

#map iframe {
  pointer-events: none !important;
}

/* ให้ .custom-select-wrapper เป็น full width แบบ input */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

/* ปรับ input ให้เหมือน form-control และจัด icon ให้อยู่กลาง */
.custom-select-input {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  height: calc(1.5em + 0.75rem + 2px);
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* ทำให้ input-group-text กับ icon อยู่กึ่งกลางแนวตั้ง */
.input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* รายการ dropdown */
.custom-select-list {
  position: absolute;
  z-index: 1000;
  width: 100%;
  border: 1px solid #ced4da;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  display: none;
  list-style: none;
  padding-left: 0;
  margin: 0;
  margin-top:38px;
  border-radius: 0 0 0.25rem 0.25rem;
}

.custom-select-list li {
  padding: 0.375rem 0.75rem;
  cursor: pointer;
}

.custom-select-list li:hover {
  background-color: #f8f9fa;
}

/* ------------------------------------ */
/* ===== MULTISELECT แบบ checkbox ===== */

/* Wrapper ใหม่ */
.custom-multiselect-wrapper {
  position: relative;
  width: 100%;
  z-index: 9999;
}

/* ช่อง input สำหรับค้นหา */
.custom-multiselect-input {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  height: calc(1.5em + 0.75rem + 2px);
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* รายการ dropdown */
.custom-multiselect-list {
  position: absolute;
  z-index: 1000;
  width: 100%;
  border: 1px solid #ced4da;
  max-height: 240px;
  overflow-y: auto;
  background: white;
  display: none;
  list-style: none;
  padding-left: 0;
  margin: 0;
  margin-top: 0px;
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
   z-index: 9999 !important;
}

/* รายการแต่ละแถว */
.custom-multiselect-list li {
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* checkbox */
.custom-multiselect-list input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #0d6efd;
}

/* hover */
.custom-multiselect-list li:hover {
  background-color: #f8f9fa;
}

.custom-multiselect-list label {
  margin: 0;
  font-weight: normal;
  width: 100%;
  cursor: pointer;
}



.box_status{
    width : 120px !important;
    padding: 10px;
    border-radius: 7px;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fas_dashboard_header{
    font-size: 70px;
}








