.hidden {
    display: none;
}

.notVisible {
    visibility: hidden;
}

.nav-item:hover {
   transform: scale(1.15);
   transition: 100ms;
}

.no-hover .nav-item:hover {
   transform: none;
   transition: none;  
}

.no-hover .card:hover {
  transform: none;
  transition: none;
  background-color: white;
  box-shadow: none;
}

.no-card-background-effect .card {
  background-color: white;
  box-shadow: none;
}

.myLinksSettingsCard:hover {
  background-color: rgb(241, 241, 241);
}

.grayText {
  color: #686868;
}

.underline {
  position: relative;
  padding-bottom: 4px;
}

.underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6%;
  width: 88%; 
  height: 1px; 
  border: 1px double darkgray;
}

.center-flexbox {
  display: flex;
  justify-content: center; /* Centers horizontally */
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: black;
  text-align: center;
  display: flex;
  align-items: center; 
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  color: black;
  text-align: center;
  display: flex;
  align-items: center; 
}

.attendanceReportSummaryTitle {
  color: rgb(107, 114, 128);
}

.shadow-effect {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out;
}

.searchReport-placeholder {
  background: url('svg/search.svg') no-repeat left center;
  background-position: 10px center;
  background-size: 16px 16px; /* Adjust size of the SVG */
  padding-left: 38px; /* Adjust based on the size of the SVG and spacing required */
}
.searchReport-placeholder::placeholder {
    color: #999;
}

.searchReport-placeholder-dark {
  background: url('svg/search.svg') no-repeat left center;
  background-position: 10px center;
  background-color: white;
  background-size: 16px 16px; /* Adjust size of the SVG */
  padding-left: 38px; /* Adjust based on the size of the SVG and spacing required */
  border-radius: 12px;
}
.searchReport-placeholder-dark::placeholder {
  color: #686868;
}

.hoverAttendanceReportSidebarOptions {
  background: linear-gradient(90deg, #eeeff7 0%, #ddefe4 100%);
  background-size: 200% 100%; /* Extend gradient */
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.hoverAttendanceReportSidebarOptions:hover {
  background: linear-gradient(90deg, #d2d6f9 0%, #cdf3dc 100%);
  animation: gradientShift 1s infinite linear;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.maxFortyChars {
  display: inline-block;
  width: 25ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.attention-btn {
  position: relative;
  background: linear-gradient(270deg, #2563eb, #1e40af, #2563eb, #1e40af);
  background-size: 400% 400%;
  color: white;
  font-size: 17px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  animation: attentionGradientShift 1.7s ease 7 forwards 0s, attentionPulseGlow 1.3s ease 3 forwards 2s;
  align-items: center;
  outline: none;
}

.attention-btn:hover {
    animation: attentionGradientShift 1.5s ease infinite;
}

@keyframes attentionGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes attentionPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);   /* bright blue start */
  }
  70% {
    box-shadow: 0 0 0 15px rgba(122, 125, 133, 0);  /* deep navy fade out */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);     /* fully gone */
  }
}

.onboard-effectBtn,
.onboard-effectBtn-twice {
  position: relative;
  cursor: pointer;
  align-items: center;
}

.onboard-effectBtn {
  animation: onboardBtnPulse 1.3s ease 0.5s infinite forwards;
}

.onboard-effectBtn-twice {
  animation: onboardBtnPulse 1.3s ease 1s 3 forwards;
}


@keyframes onboardBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 99, 99, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 37, 37, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(36, 36, 36, 0); 
  }
}


.btn-success-disabled-cust {
  pointer-events: none;
  background-color: #64be81ff;
  border-color: #64be81ff;
  outline: none;
  border: none;
}


.btn-success-disabled-cust:hover {
  pointer-events: none;
  background-color: #64be81ff;
  border-color: #64be81ff;
  outline: none;
  border: none;
}

@keyframes rowBlink {
  0%, 100% { background-color: #fff3cd; }
  50%      { background-color: #ffeeba; }
}

.blink-highlight {
  animation: rowBlink 0.3s ease-in-out infinite;
}











/*
scroll bar changes
*/

::-webkit-scrollbar {
    width: 6px;                
    height: 8px;             
  }

  /* Scrollbar track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;        
    border-radius: 10px;       
  }

  /* Scrollbar thumb */
  ::-webkit-scrollbar-thumb {
    background: #888;           
    border-radius: 10px;
  }

  /* Thumb on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;           
  }

  .hideScrollBar::-webkit-scrollbar {
    display: none;
  }

  @media (max-width: 1495px) {
    body {
      zoom: 91%;
    }
  }
  
  @media (max-width: 1370px) {
    body {
      zoom: 88%;
    }
  }

  @media (max-width: 1340px) {
    body {
      zoom: 84%;
    }
  }

  @media (max-width: 1275px) {
    body {
      zoom: 80%;
    }
  }

  @media print {
    .no-print {
      display: none !important;
    }
  }
  