.login-field {
  border: 5px solid #1C6EA4;
  border-radius: 10px 10px 10px 10px;
}


div.filter {
  background-color: lightgray;
}

.sidebar-nav {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\02C6" !important;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
  right: 0.5em;
  content: "\02C7" !important;
}

.table_title {
  display:inline;
}

input[name~="password"] {
  border: 1px solid #1C6EA4;
  border-radius: 5px 5px 5px 5px;
}

input[name~="username"] {
  border: 1px solid #1C6EA4;
  border-radius: 5px 5px 5px 5px;
}

input[type="file"] {
    font-size: 15px;
    color: rgb(192, 14, 14);
  }

.table_header {
  background-color: blue;
  color: white;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden; /* Important to clip the animation */
  }
  
  .progress-bar {
    height: 100%;
    background-color: #4CAF50; /* Green color */
    width: 0%; /* Initial width */
    animation: progress-animation 3s linear infinite; /* Animation */
  }
  
  @keyframes progress-animation {
    0% { width: 0%; } 
    12% { width: 25%; } 
    25% { width: 50%; } 
    37% { width: 75%; } 
    50% { width: 100%; } 
    62% { width: 75%; } 
    75% { width: 50%; } 
    88% { width: 25%; } 
    100% { width: 0%; } 
  }
  
a[disabled] {
    color: gray;
    pointer-events: none; /* Prevents clicking on the link */
    cursor: default; /* Changes cursor to default arrow */
}