#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
    z-index: 999999;
}

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loading Text */
#loading-container p {
    color: white;
    font-size: 18px;
    margin-top: 20px;
}


/* Notification Container */
#notification-container {
    position: fixed;
    top: 20px;
    left: 20px;
    width: auto;
    z-index: 9999;
}

/* Notification */
.notification {
    background-color: #4caf50;
    /* Green background */
    color: white;
    /* Text color */
    padding: 15px 25px;
    margin: 10px 0;
    border-radius: 55px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    font-family: 'poppins';
    animation: slideDown 0.3s forwards, fadeOut 0.8s 1.0s forwards;
}

/* Slide down animation */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade out animation */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

select {
    text-transform: capitalize;
}

input[type="date"] {
    text-transform: uppercase !important;
}

input::placeholder {
    text-transform: capitalize !important;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(99, 166, 224) !important;
}
th {
    background-color: rgb(6, 96, 164) !important;
    color: #ffffff !important;
    text-transform: capitalize !important;
}
.disabledrow{
    color: red !important;
}


/* Floating Dot Container */
.floating-dot {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 16px;
  background-color: #28a745;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.4s ease, height 0.4s ease, border-radius 0.4s ease;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.4);
  overflow: hidden;
}

/* Expand on Hover */
.floating-dot:hover {
  width: 200px;
  height: auto;
  border-radius: 12px;
}

/* Menu Links */
.menu-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.floating-dot:hover .menu-content {
  opacity: 1;
}

/* Links Style */
.menu-content a {
  text-decoration: none;
  color: #fff;
  padding: 8px 0;
  font-family: sans-serif;
  font-size: 14px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.menu-content a:hover {
  transform: translateX(5px);
  color: #d4ffd4;
}
/* Define the styles for the scrollbar track */
::-webkit-scrollbar {
    width: 12px;
  }
  
  /* Define the styles for the scrollbar handle */
  ::-webkit-scrollbar-thumb {
    background-color: rgb(70, 128, 230); /* Change the color to your preference */
    border-radius: 6px;
    opacity: 0.8;
  }
  
  /* Define the styles for the scrollbar track on hover */
  ::-webkit-scrollbar-track:hover {
    background-color: #e4e4e400; /* Change the color to your preference */
  }
  
  /* Define the styles for the scrollbar handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #141414; /* Change the color to your preference */
  }
  
  /* Define the styles for the scrollbar corner */
  ::-webkit-scrollbar-corner {
    background-color: transparent;
  }



  