#loader-block {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #00000080;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.flex {
  display: flex;
  gap: 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.disabled-link {
  pointer-events: none;
  color: gray;
  cursor: not-allowed;
  opacity: 0.6;
}

.text-black {
  color: black;
}


.practice-list-table th {
  color: white !important;
  font-weight: 600;
}

.list-table th {
  color: white !important;
  font-weight: 600;
}

.table-head1 {
  width: 80%;
}

.table-head2 {
  width: 20%;
}

.users-list-table th {
  color: white !important;
  font-weight: 600;
}

.policies-list-table th {
  color: white !important;
  font-weight: 600;
}

.roles-list-table th {
  color: white !important;
  font-weight: 600;
}

#action-selection-area th{
  color: white !important;
  font-weight: 600;
}
/* #logout-btn { */
  /* padding: 1px 18px;
  float: right;
  cursor: pointer;
} */

.practice-info-section {
  display: flex !important;
}

.process-section {
  border: 2px solid black;
  font-weight: 600;
  padding: 10px;
}

.dual-ring {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.dual-ring:after {
  content: " ";
  display: block;
  width: 13px;
  height: 13px;
  margin: 2px;
  border-radius: 50%;
  border: 2px solid #3498db;
  border-color: #3498db transparent #3498db transparent;
  animation: dual-ring-spin 1.2s linear infinite;
}

@keyframes dual-ring-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.square {
  background-image: url("../images/png/pointing-right-red.png");
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.checkmark {
  background-image: url("../images/png/pointing-right-green.png");
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.disable-btn {
  background-color: gray !important;
}

.capital-input {
  text-transform: uppercase;
}

.process-list li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip .question-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  background-color: black;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
  font-family: Arial, sans-serif;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 6px;

  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.justify-center {
  justify-content: center;
}

.d-flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.space-x-3 > * {
  padding-right: 3px;
  padding-left: 3px;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.justify-between {
  justify-content: space-between;
}

.switch-btn {
  padding: 10px 0px;
  width: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid gray;
  background-color: transparent;
}

.switch-btn.active {
  background-color: #3498db;
  color: white;
}

.cursor-pointer {
  cursor: pointer;
}

#disableemr {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9;
  background-color: #00000080;
}

#disablepm {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9;
  background-color: #00000080;
}

.navbar {
  background-color: #3e5a8f;
  padding: 15px 0;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.2rem;
}

.navbar-links {
  display: flex;
  gap: 20px;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: #d1d9f0;
}

.form-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 30px 0px;
}

.form-title {
  color: #3e5a8f;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.submit-btn {
  background-color: #3e5a8f;
  color: white;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #2c4268;
  color: white;
}

.switch-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.switch-label {
  margin-left: 10px;
}

.table-scroll {
  max-height: 100px;
}

.justify-between {
  justify-content: space-between;
}

.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3e5a8f;
  /* padding: 1rem 2rem; */
  font-family: Arial, sans-serif;
}

.custom-header nav a {
  /* margin-left: 1rem; */
  text-decoration: none;
  color: #3e5a8f;
  /* padding-bottom: 4px; */
  border-bottom: 2px solid transparent;
}

.custom-header nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.custom-header nav a:hover,
.custom-header nav a.active-link {
  text-decoration: underline;
  text-underline-offset: 5px;
  border-color: #fff;
}

.logout {
  color: #ff6666;
  text-decoration: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 27px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(23px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.uk-select {
  width: 30vw;
}


#select-practice {
  z-index: 1 !important;
}


#submitBtn:disabled {
  background-color: #cccccc; /* Light gray background */
  color: #666666; /* Darker text */
  cursor: not-allowed; /* Show "not allowed" cursor */
  opacity: 0.7; /* Slightly faded */
}

.shared-container {
  width: calc(100% - 80px);
  height: calc(100% - 160px);
  overflow: auto;
}

.default-container {
  margin: 80px 0 40px 0;
  padding: 40px 40px 0 40px;
}

.action-container {
  height: calc(100% - 140px) !important;
  margin: 80px 0 0 0;
  padding: 0 40px 20px 40px;
}


.default-body {
  width: 100vw; 
  height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}