.ck.ck-reset.ck-editor.ck-rounded-corners {
    width: 100%;
}

.ui-timepicker-standard {
    z-index: 9 !important;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    width: 100% !important;
}

.ui-timepicker-no-scrollbar .ui-timepicker {
    overflow-x: hidden !important;
}

.bg-border {
    border: 6px solid grey;
}

.input-bg {
    background: white;
}

.input-bg:focus {
    background-color:white !important;
}

.text-area .ck.ck-reset.ck-editor.ck-rounded-corners {
    width: 74% !important;
}

a.dropdown-item.active {
    color: black !important;
    background-color: #f0f2f5 !important;
}
input#reset-btn {
    border-radius: inherit !important;
    width: 120px !important;
}

.text-error {
    color:white !important;
    background-color: red;
}

.text-success {
    color:white !important;
    background-color: green !important;
}

input.btn.blue {
    background-image: linear-gradient(195deg, #0a3dab 0%, #0a3dab 100%);
    color: white;
}

/* Styles for loader */
#loader-wrapper {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
  }
  
  #loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Dimming overlay */
  #dim-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999; /* Ensure it's above other elements */
    display: none; /* Initially hidden */
  }
  