.bee-btn-split {
    color: white;
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.bee-dropdown {
    position: absolute;
    display: inline-block;
}

.bee-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    z-index: 1;
}

.bee-dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.bee-dropdown-content a:hover {
    background-color: #ddd;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.bee-dropdown:hover .bee-dropdown-content {
    display: block;
}

.bee-btn-split:hover,
.bee-dropdown:hover .bee-btn-split {
    background-color: rgb(234, 236, 239);
}

/* CSS cho nút khi bị vô hiệu hóa */
.bee-disabled {
    background-color: #ccc;
    /* Màu nền xám để chỉ ra nút bị vô hiệu hóa */
    color: #666;
    /* Màu chữ xám */
    pointer-events: none;
    /* Vô hiệu hóa tương tác người dùng */
    cursor: not-allowed;
    /* Đổi hình con trỏ thành "not-allowed" */
}

.bee-alert-error {
    background-color: #f8d7da;
    border: #f5c6cb;
    color: #721c24;
}


/* CSS rating */
/* 
.counterW {
    margin: 0 0 0 60px;
} */

.ratingW {
    position: relative;
    padding-inline-start: 0;
}

.ratingW li {
    display: inline-block;
    /* margin: 0px; */
}

.ratingW li a {
    display: block;
    position: relative;
}


.star {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .9em;
    margin-right: .9em;
    margin-bottom: 1.2em;
    border-right: .3em solid transparent;
    border-bottom: .7em solid #ddd;
    border-left: .3em solid transparent;
    font-size: 11px;
}

.star:before,
.star:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: .6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: .7em solid #ddd;
    border-left: 1em solid transparent;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
}

.star:after {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}


.ratingW li.on .star {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .9em;
    margin-right: .9em;
    margin-bottom: 1.2em;
    border-right: .3em solid transparent;
    border-bottom: .7em solid #FC0;
    border-left: .3em solid transparent;
    font-size: 11px;
}

.ratingW li.on .star:before,
.ratingW li.on .star:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: .6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: .7em solid #FC0;
    border-left: 1em solid transparent;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
}

.ratingW li.on .star:after {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

.empty-data-container {
    display: flex;
    justify-content: center; /* Căn giữa ngang */
    align-items: center; /* Căn giữa dọc */
    text-align: center; /* Căn giữa văn bản */
}

