/*All the css changes added by developer should come here*/

a {
  cursor: pointer;
}

/* .loader {
  border: 16px solid #f3f3f3;
  Light grey
  border-top: 16px solid #3498db;
  Blue
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
} */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Login Page */
.admin-login .btn-outline-light:disabled,
.btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: #3A8AC7;
}

.edit-modal-main .modal-save-btn {
  margin-inline: 2px;
}

.delete-modal-main .modal-close-btn {
  margin-inline: 4px;
}


/* Style for the dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style for the dropdown header */
.dropdown-header {
  padding: 1px 4px !important;
  cursor: pointer;
  color: black !important
}

/* Style for the dropdown list */
.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  /* width: 100%; */
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  max-height: 100px;
  overflow-y: scroll
}

/* Style for each dropdown item */
.dropdown-item {
  padding: 1px 4px !important;
  cursor: pointer;
}

.dropdown-item:hover {
  box-shadow: 0 0 10px 100px #1882A8 inset;
}

.react-datepicker-wrapper,
.react-datepicker__input-container,
.react-datepicker__input-container input {
  font-size: 16px;
  padding-right: 5px;
  padding-left: 5px;
  max-width: 120px;
  margin-right: 10px;
}

.react-datepicker__year-wrapper {
  max-width: 210px !important;
}

.yearOnlyWidth {
  width: 60px;
}

.yearMonthWidth {
  width: 85px;
}

.custom-dropdown-button {
  background-color: white !important;
  color: black !important;
  outline: none !important;
  border: none !important;
  padding: 0px 5px 4px 5px !important;
  margin-right: 10px;
  /* text-decoration: underline !important;
text-decoration-color: #a9a9b1 !important; */
}

.custom-dropdown-menu {
  width: 70px;
  min-width: 70px !important;
  max-height: 100px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.datePicker {
  width: 120px;
}

.rdtPicker {
  background-color: #f1f1f1 !important;
}

/* .rdtPicker td.rdtDay:hover {
   background-color: #134928 !important; 
} */
.rdtPicker thead tr:first-of-type th:hover {
  background: #3A8AC7 !important;
}

.rdtPicker thead:first-child {
  background-color: #3A8AC7 !important;
  font-size: medium;
  color: white !important;
}

/* .rdtPicker thead:first-child:hover {
  background-color: #3A8AC7 !important;
}  */
.rdtDays table tbody {
  border: none
}

.rdtMonths table tbody {
  border: none
}

.rdtYears table tbody {
  border: none
}

/* remove white gap between blue portion and footer */
/* .admin-login {
  height: 618px
} */

/* AG GRID */
/* .no-border:focus {
  border: none !important;
} */
.ag-cell-focus,
.ag-cell-no-focus {
  border: none !important;
}

/*This CSS is to not apply the border for the column having 'no-border' class */
.no-border.ag-cell:focus {
  border: none !important;
  outline: none;
}

.ag-cell {
  font-size: 16px;
  /* text-align: center; */
}

.ag-header-cell {
  font-size: 15px;
}

.ag-row,
.ag-paging-panel {
  border: none !important
}

/* .W100 {
width: 100px !important;
 } */
/* DISPLAY MESSAGES */
.clean-error {
  text-align: center;
  border: solid 1px #CC0000;
  background: #F7CBCA;
  color: #CC0000;
  padding: 5px;
  margin-bottom: 0;
  font-weight: 600;
}

.clean-ok {
  border: solid 1px #349534;
  background: #C9FFCA;
  color: #008000;
  font-weight: bold;
  padding: 4px;
  text-align: center;
  font-size: 14px;
  font-family: Calibri;
}

.custom-dropdown-item-selected {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd !important;
}

.top-right {
  position: absolute;
  right: 10%;
  top: 10%;
}

select {
  cursor: pointer;
}

.q14-padding-temporary {
  padding-left: 18px !important;
}

.edited-row {
  background-color: aliceblue !important;
}

.forgot-password-hyperlink:hover {
  color: #0645AD;
}
.reset-password {
  min-height: 85vh;
}