/**
 * @Project NUKEVIET 4.x
 * @Author Thạch Cảnh Bình <bnhthach@gmail.com>
 * @Copyright (C) 2025 Thạch Cảnh Bình. All rights reserved
 * @License: Not free read more http://nukeviet.vn/vi/store/modules/nvtools/
 * @Createdate Mon, 28 Apr 2025 07:05:18 GMT
 */
.theme-color-picker {
  display: flex
  ;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
  position: absolute;
  left: 0px;
  bottom: 60px;
  width: 100%;
}

.theme-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.theme-dot:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.theme-dot.active {
  border: 2px solid #333;
}
.floating-btn i{
  font-size: 25px;
}
.floating-btn {
  position: fixed;
  bottom: 40px;
  right: 10px;
  background-color: var(--background-color);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  color:  var(--primary-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  z-index: 9999;
}
.floating-btn:hover {
  background-color: var(--background-color-hover);
  transform: scale(1.05);
}

.config-popup {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  width: CALC(100% - 350px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 10000;
  height: CALC(100% - 150px);
}
.config-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.popup-header {
  background: #D5DEEF;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
}
.popup-header span {
  cursor: pointer;
  font-size: 18px;
  color: #999;
}
.popup-content {
  padding: 16px;
  font-size: 14px;
  color: #111827;
  background-color: #fff;
  position: relative;
  height: 100%;
}
.popup-content input {
  margin-right: 8px;
}















.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
  background-color: var(--background-color);
  border-color: var(--background-color);
}
.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
  color: var(--background-color);
  border-color: var(--background-color);
}
.pagination>li>a, .pagination>li>span {
  color: var(--background-color);
}
