/* *************** Date: 2025-05-20, Version: V1.0.0.6 ***************/ */
* body {
  font-family: '微軟正黑體';
  overflow-y:scroll;
}

html body {
  margin: 0;
  height: 100%;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.button-150 {
  width: 150px;
  white-space: nowrap; /* 不換行 */
  overflow: hidden; /* 隱藏超出部分 */
  text-overflow: ellipsis; /* 用省略號表示超出部分 */
}

.overflow-x{
  overflow-x: auto;
}

/* 卷軸樣式 */
::-webkit-scrollbar {
  width: 15px;
}

/* 捲軸的軌道 */
::-webkit-scrollbar-track {
  background: #f8f9fa!important;
}

/*捲軸尚未滑到的軌道*/
::-webkit-scrollbar-track-piece {
  background: #f8f9fa!important;
}

/* 滑動的區塊 */
::-webkit-scrollbar-thumb {
  background: rgb(154 205 255);
}

/* 滑鼠移到滑動的區塊上 */
::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

h2 {
  position: relative;
}

h2::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 20px; /* Adjust this value to control the distance of the color block from the heading */
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  background-color: #007bff; /* Blue color */
}

h2::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: -5px; /* Adjust this value to control the distance of the color block from the heading */
  transform: translateY(-50%);
  width: 24px;
  height: 5px;
  background-color: #007bff; /* Blue color */
}

/* 釘選在top的標頭 */
.page-title {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
}

/* 釘選在buttom的標頭 */

.page-footer {
  position: sticky;
  bottom: -50px;
  left: 13%;
  width: 75%;
  height: 57px;
  border-radius: 15px 15px 0 0;
  z-index: 1;
  /* background-color: rgb(248, 248, 248); */
  box-shadow: 0 -3px 5px rgb(68, 68, 68, .3);
  transition: transform .3s linear;
}

.page-footer:hover {
  transform: translate(0px, -50px);
}

.fixed {
  position: sticky;
  bottom: 0px;
  left: 13%;
  width: 75%;
  height: 57px;
  border-radius: 15px 15px 0 0;
  z-index: 1;
  box-shadow: 0 -3px 5px rgb(68, 68, 68, .3);
}

.fixed_empl{
  position: sticky;
  top: 56px;
  left: 0;
  z-index: 1;
  box-shadow: -1px 0px 15px rgb(68, 68, 68, .3);
}


.fixed_total{
  position: fixed;
  top: 120px;
  right: 16px;
  z-index: 1;
  box-shadow: 0 0 15px rgb(68, 68, 68, .3);
}

.fixed_table{
  position: sticky;
  top: 108px;
  left: 0;
  z-index: 1;
  box-shadow: 0 0 15px rgb(68, 68, 68, .3);
}

.fixed_tracking{
  position: sticky;
  top: 55px;
  left: 0;
  z-index: 0;
  box-shadow: 0 0 15px rgb(68, 68, 68, .3);
}

.fixed_history{
  position: sticky;
  top: -1px;
  left: 0;
  z-index: 1;
  box-shadow: 0 0 15px rgb(68, 68, 68, .3);
}

.scrollable-container-100vw table thead.fixed_table {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
  box-shadow: 0 0 15px rgb(68, 68, 68, .3);
}

.tipsDiv {
  content: "";
  position: absolute;
  top: -16px;
  right: 36px;
  width: 20px;
  height: 16px;
  background-color: #f8f9fa !important;
  border-radius: 5px 5px 0px 0px;
  box-shadow: -1px -3px 5px rgb(68, 68, 68, .3);
}

.displayNone{
  display: none;
}

.displayNoneAll *{
  display: none;
}

.hiddenOnLeft{
  position: absolute;
  left: -9999px;
}

.bellafter{
  position: relative;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.bellafter::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  top: 0;
  right: 0;
}

/* 已讀 / 無通知 */
.bellafter.changed::before {
  display: none;
}

.bellafter::before {
  transition: transform 0.18s ease-out;
}

.bellafter:hover::before {
  transform: scale(1.1);
}

.bellafter:hover {
  transform: translateY(-2px);
}

.bellHover {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease-out;
}

.bellHover:hover {
  transform: translateY(-2px);
}

.tipsArrow {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 6px; height: 6px;
  transform: rotate(-135deg);
  box-shadow: 2px 2px 0px 0px #17a2b8;
  /* border-bottom: 16px solid #17a2b8;
  border-left: 7px solid transparent; */
}

.tipsArrow::after{
  content: "";
  position: absolute;
  top: 0px;
  right: 2px;
  width: 4px;
  height: 4px;
  box-shadow: 1.5px 1.5px 0px 0 #17a2b8;
}

.bgc-ff1f0f{
  background-color: #ff1f0f;
}

.bgc-ef1623{
  background-color: #ef1623;
  color: #eeffee;
}
.bgc-ef1623:hover{
  background-color: #F85E00;
}

.bgc-F85E00{
  background-color: #FFF3E0;
}

.bgc-E3F2FD{
  background-color: #E3F2FD;
}

.bgc-FF958C{
  background-color: #FF958C;
}

.bgc-b5dfff{
  background-color: #b5dfff;
}

.bgc-ECCE8E{
  background-color: #ffe7b3;
}

.bgc-ECCE8E:hover{
  background-color: #ecd48e;
}

.bgc-FDF0D5{
  background-color: #e9f3fd;
}

.bgc-FDF0D5:hover{
  background-color: #c3d8f3;
}

.bgc-E9F3ED{
  background-color: #e9f3ed;
}

.bgc-E0E0E2{
  background-color: #E0E0E2;
}

.bgc-A5D8FF{
  background-color: #A5D8FF;
}

.bgc-EEF5DB{
  background-color: #EEF5DB;
}

/*(253, 237, 237)*/
.bgc-FDEDED{
  background-color: #FDEDED;
}

.fc-list-event.leave-event:hover td {
  background-color: #2E7D32 !important;
  color: #fff !important;
}

.fc-list-event.business-trip-event td {
  background-color: #F9A825 !important;
  color: #fff !important;
}

.fc-list-event.business-trip-event:hover td {
  background-color: #dd9218 !important;
  color: #fff !important;
}

td.pre-wrap {
  white-space: pre-wrap; /* 保留換行與空白 */
  word-break: break-word; /* 避免超出容器 */
}

/* .invalidArrow{
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: 1.5px 1.5px 0px 0 #ff1f0f;
}

.invalidArrow::after{
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: 1.5px 1.5px 0px 0 #ff1f0f;
} */

.version{
  position: fixed;
  right: 5px;
  bottom: 0px;
}

.tipsBottom{
  position: fixed;
  right: 5px;
  top: 60px;
}


.btn-local {
  width: 150px;
}

.btn-local-100 {
  width: 100px;
}

.QSI-logo {
  position: absolute;
  top: 5px;
  left: 10px;
}

.png-light{
  width: 32px;
  height: 32px;
  filter:invert(100%);
}

.zindex0 {
  z-index: 0;
}

.zindex99 {
  z-index: 999;
}

.fz-10{
  font-size: 10px;
}

.fz-12{
  font-size: 12px;
}

.fz-14{
  font-size: 14px;
}

.fz-16{
  font-size: 16px;
}

.fz-20{
  font-size: 20px;
}

.fz-40{
  font-size: 40px;
}

#signArea1, #signArea2, #signArea3{
  /* width: 260px;
  height: 67px; */
  /* width: 33%; */
  max-height: 153px;
}

#signature1, #signature2, #signature3{
  width: 318px;  height: 60px;
}

.overflow-ellipsis{
  overflow: hidden;
  text-overflow: ellipsis;
}

.scrollable-container-100vw {
  max-width: 100vw; /* 或者你想要的寬度 */
  overflow: auto; /* 添加水平滾動條 */
  max-height: 60vh; /* 新增這行 */
}

/* LOADING 效果 */

.loadingArea {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* display: none; */
}

.loadingArea .mask {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #444;
  opacity: 0.5;
}

.loadingArea .loading {
  /* 移除 top/left/transform，改用父層控制置中 */
  border: 12px solid rgb(216, 111, 111);
  border-right: 12px solid #fff;
  border-bottom: 12px solid #fff;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  animation: loading 1s infinite linear;
  z-index: 1000;
}

.loadingWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  text-align: center;
}

.loadingText {
  font-size: 18px;
  font-weight: bold;
  color: #444;
  margin-bottom: 15px; /* 與圈圈間距 */
  z-index: 1001;
}

/* loading 畫面樣式 */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  z-index: 9999;
}

.loading-on-btn {
  display: inline-block;
  vertical-align: middle;
  border: 3px solid #b5dfff;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  margin: 1px;
  margin-left: 5px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  animation: loading 1s infinite linear;
}

.merge-history-item {
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.merge-history-item:hover {
  background-color: #fff3cd; /* Bootstrap 4 的 warning-light 類似色 */
  cursor: pointer;
}

.badge-merged:hover {
  cursor: help;
}

.badge-info:hover {
  background-color: #138496; /* 深藍色 */
}

textarea.auto-expand {
  overflow-y: hidden; /* 隱藏卷軸，避免抖動 */
  resize: none;       /* 禁止手動拉伸（可選） */
  min-height: 38px;   /* 預設高度 */
}

@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

.loading-sm {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid rgb(216, 111, 111);
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  margin: 0px 0px 0px 3px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  -webkit-animation: loading 1s infinite linear;
  -moz-animation: loading 1s infinite linear;
  -o-animation: loading 1s infinite linear;
  animation: loading 1s infinite linear;
}

@-webkit-keyframes loading-sm {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* 淡出動畫 */
.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.7s, opacity 0.5s linear;
}

/* 淡入動畫 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

/* timepicker */
.ui-timepicker-standard {
  font-size: 0.6rem;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.bg-qsi {
  background-color: rgb(242, 237, 237);
}

#infomation {
  position: absolute;
  right: 10px;
  bottom: -30px;
}

.elementToFadeInAndOut {
  font-size: 16px;
  -webkit-animation: fadeinout 3s linear forwards;
  animation: fadeinout 4s linear forwards;
}

@-webkit-keyframes fadeinout {
  0%, 100% {
    opacity: 0;
  }

  40%, 60% {
    opacity: 1;
  }
}

@keyframes fadeinout {
  0%, 100% {
    opacity: 0;
  }

  20%, 80% {
    opacity: 1;
  }
}

@keyframes rotate180 {
  0% {
    transform: rotate(0deg); /* 初始狀態：不旋轉 */
  }
  50% {
    transform: rotate(180deg); /* 旋轉到 180 度 */
  }
  100% {
    transform: rotate(0deg); /* 回到初始狀態 */
  }
}

#rotateImage {
  animation: rotate180 0.5s; /* 使用 rotate180 關鍵幀動畫，持續時間 0.5 秒 */
  cursor: pointer; /* 變更游標為手指指示 */
}

/* .arrow {
  content: "";
  position: absolute;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #ffc107;
  top: 6px;
  right: -7px;
} */

.moveDiv {
  content: "";
  width: 50px;
  height: 50px;
  border-left: 7px solid #17a2b8;
  bottom: -50px;
  right: 50px;
  transition: transform .5s linear;
}

.moveDiv:hover {
  transform: translate(0px, 100px);
}

.retry{
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #f11;
  border-radius: 50px;
  color: #f8f9fa;
  font-size: 12px;
  text-align: center;
}

.retryPosition1{
  right: 25px;
  top: 40px;
}

.retryPosition2{
  right: 25px;
  top: 225px;
}

.retryPosition3{
  right: 25px;
  top: 408px;
}

.retry:hover{
  color: #f11;
  background-color: #f8f9fa;
  box-shadow: 1px 1px 10px #333;
  cursor: pointer;
  transition: color .1s linear;
  transition: background-color .1s linear;
  transition: box-shadow .1s linear;
}

.check{
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background-color: rgb(14, 209, 47);
  border-radius: 5px;
  color: #282929;
  font-size: 12px;
  text-align: center;
  padding-top: 8px;
}

.checkPosition1{
  right: 10px;
  top: 90px;
}

.checkPosition2{
  right: 10px;
  top: 310px;
}

.checkPosition3{
  right: 10px;
  top: 510px;
}

.check:hover{
  color: #282929;
  background-color: rgb(12, 169, 38);
  /* box-shadow: 0px 0px 3px rgb(93, 93, 93); */
  cursor: pointer;
  transition: color .1s linear;
  transition: background-color .1s linear;
  transition: box-shadow .1s linear;
}

.recycle *{
  /* border: 1px solid #333; */
}

.recycle{
  position: absolute;
  content: "";
  top: 15px; right: 20px; 
  border: 2px solid rgb(180, 255, 181);
  border-radius: 50%;
  background-color: rgb(180, 255, 181);
  cursor: pointer;
  z-index: 1;
}

.recycle:hover{
  background-color: rgb(103, 232, 105);
  box-shadow: 0px 0px 3px #333;
  /* transition: color .1s linear; */
  transition: background-color .1s linear;
  transition: box-shadow .1s linear;
  transform: rotate(0.1turn);
  transition: transform .1s linear;
}

.btn-max{
  width: 80%;height: 100%;
}

.headerName{
  /* position: absolute; */
  top: 12px;
  right: 20px;
  background-color: rgb(211, 232, 253);
  border-radius: 10px;
  box-shadow: 0px 0px 5px rgb(184, 205, 206);
  padding: 0px 8px;
}


.logoutDiv{
  cursor: pointer;
  border-radius: 5px;
}

.logoutDiv:hover{
  background-color: #eee;
  box-shadow: 0px 0px .5px .5px #ccc;
  transition: background-color .1s linear;
  transition: box-shadow .1s linear;
}

.printIcon{
  width: 40px; height: 40px;
  cursor: pointer;
  border-radius: 10px;
}

.printIcon:hover{
  background-color: #eee;
  box-shadow: 0px 0px 5px #777;
  transition: background-color .1s linear;
  transition: box-shadow .1s linear;

}

.container-xl{
  padding-left: 0;
  padding-right: 0;
}

#headerTime{
  z-index: 1;
}

.input-group-prepend{
  min-width: 103px;
}

.input-group-text{
  width: 100%;
}

:lang(de) .input-group-text {
  font-size: 0.9em; /* 德文段落的字體較小 */
}

.bgc-e1eaef{
  background-color:#e1eaef;
}

.bgc-e9ecef{
  background-color: #e9ecef;
}

.bgc-e9ecef-hover:hover{
  background-color: #e9ecef;
}

.bgc-576CA8{
  background-color: #576CA8;
}

.bgc-50C9CE{
  background-color: #50C9CE;
}

.bgc-ee9999{
  background-color: #ee9999;
}

.listBody:hover{
  background-color: #efefee;
  transition: all .1s linear;
}

/* .listSearchBody{
  overflow-y: auto;
} */

.delIcon{
  /* position: relative;
  top: 10px; left: 12px; */
  width: 22px; height: 20px;
  color: #eee;
  background-color: #f33;
  /* border-radius: 25%; */
}

.delIcon:hover{
  background-color: #ee9999;
  transition: all .1s linear;
  cursor: pointer;
}

.punchTable{
  width: 100%;
  overflow: scroll;
}

.required::before {
  content: '*';
  font-size: 13px;
  color: red;
  margin: 0 2px;
  padding: 0 2px;
}

.cursorHelp{
  cursor: help;
}

.cursorPointer{
  cursor: pointer;
  /* user-select: none; */
}

.headerHover:hover{
  background-color:rgb(154 205 255);
}

.fade-in-out {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  max-height: 0;
  overflow-y: auto;
}

.fade-in-out.fade-in {
  opacity: 1;
  max-height: 100vh;
}

.fade-in-out.fade-out {
  opacity: 0;
  max-height: 0;
}

.userSelectNone{
  user-select: none;
}

.max-width-1600{
  max-width: 1600px;
}

.max-height-80vh{
  max-height: 80vh;
}

.min-height-60vh{
  min-height: 60vh;
}

.scroll_y{
  overflow-y: scroll;
}

.ellipsis{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 15ch; /* 10個字元的寬度 */
}

.afterBackslash:after{
  content: '/'
}

.imgFliter-outsidework{
  width: 22px;
}

.imgFliter-outsidework-active{
  background-image: url(), linear-gradient(rgb(12, 200, 17), #f4615c);
}

.imgFliter-maintenancework{
  width: 22px;
}

.imgFliter-maintenancework-active{
  background-image: url(), linear-gradient(rgb(0, 232, 248), #f1df34);
}

.imgFliter-dailyreportfile{
  width: 22px;
}

.imgFliter-dailyreportfile-active{
  background-image: url(), linear-gradient(rgb(255, 174, 0), #ffffff);
}

.hoverArea:hover{
  background-color: #e9ecef;
  opacity: 0.5;
}

.cycleHover{
  background-color: rgb(255, 196, 21);
}

.cycleHover:hover{
  background-color: rgb(224, 188, 30);
}

.hide-img{
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid red;
}
.show-img{
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid red;
}

/* 768px以下 */
@media (max-width: 1199px) {

}

.h-90{
  height: 90% !important;
  
}

.min-height-200px{
  min-height: 200px;
}

/* 让widget显示在输入框上方 */
#takeDate .bootstrap-datetimepicker-widget {
  top: auto !important;
  bottom: 100% !important;
  border: 1px solid #ccc !important; 
  background-color: #fff !important;
}

#takeDate .bootstrap-datetimepicker-widget:before, 
#takeDate .bootstrap-datetimepicker-widget:after {
    border-color: transparent !important; /* 确保隐藏的箭头不会影响边框 */
}

/* 调整箭头位置与方向 */
#takeDate .bootstrap-datetimepicker-widget:before {
  display: none !important;
}

.qrCode-image {
  width: 150px;
  height: auto;
  margin-right: 30px;
}

#qrcodeImg {
  margin: 20px auto; /* 將 QR Code 放置於中央 */
  background-color: #0d44f7; /* 設置底圖顏色為藍色 */
  padding: 10px;
  border: 1px solid #ddd; /* 添加邊框使其更突出 */
  display: inline-block; /* 使其內容居中 */  
  width: 250px;
  height: 250px;
  
}

/* 置中對齊樣式 */
.center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 100vh;  全螢幕高度 */
}

.alert {
  color: #dc3545;
  font-size: 12px;
  display: none;
}

.dc3545{
  color: #dc3545;
}

.w20h15{
  height: 17px;
  width: 17px;
}

.multiselect-container {
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.multiselect {
  height: 31px !important;
  line-height: 31px !important;
  display: inline-block;
  padding: 0 10px; /* 確保內容與外框對齊 */
  overflow: hidden; /* 防止內容溢出 */
  border: 1px solid #ccc; /* 若需要邊框 */
  border-radius: 0px; /* 圓角 */
  font-size: 14px;
}

.minw-0 { min-width: 0; }

/* <992px：徽章占滿一行、不擠；≥992px 回到同行 */
@media (max-width: 991.98px) {
  .o-hours {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .fz-16 button {
    white-space: normal !important;
    text-align: center;
  }
}

/* ---- 日期交錯底色 ---- */

/* 白底（非 hover） */
#punchTableBody tr.row-white:not(:hover) {
  background-color: #ffffff;
}

/* 淺灰底（非 hover） */
#punchTableBody tr.row-gray:not(:hover) {
  background-color: #eceff1; /* 你選的柔和淺灰 */
}

/* 保留 Bootstrap hover 效果 */
.table-hover tbody tr:hover {
  background-color: #e9ecef !important;
}

/* 桌機版恢復 btn-local 原寬度 */
@media (min-width: 768px) {
  .btn-local-desktop {
    width: 150px;
    /* 可依你原本的大小調整 */
  }
}


/* Summary Bar 容器 */
.calendar-summary-bar {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  margin-bottom: 6px;
  overflow: hidden;
}

/* 左側標題 */
.calendar-summary-bar .summary-title {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 600;
  color: #495057;
  background: #f8f9fa;
  border-right: 1px solid #dee2e6;
  white-space: nowrap;
}

/* 每個統計項目 */
.calendar-summary-bar .summary-item {
  flex: 1;
  text-align: center;
  padding: 6px 8px;
  border-right: 1px solid #dee2e6;
}

.calendar-summary-bar .summary-item:last-child {
  border-right: none;
}

/* 標籤文字 */
.calendar-summary-bar .summary-label {
  font-size: 12px;
  color: #6c757d;
  line-height: 1.2;
}

/* 數字 */
.calendar-summary-bar .summary-value {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
/* ===== NEW 標記（紅色角標） ===== */
.new-badge {
  position: absolute;
  top: -6px;
  right: -10px;

  background: #dc3545; /* Bootstrap danger */
  color: #fff;

  font-size: 10px;
  font-weight: 700;

  padding: 2px 6px;
  border-radius: 10px;

  line-height: 1;
  letter-spacing: 0.5px;

  box-shadow: 0 2px 6px rgba(0,0,0,0.2);

  user-select: none;
}