

.btn-blue {
    font-size: 14px;
    color: #fff;
    background-color: #1C6DBB !important;
    border-radius: 8px;
    border-width: 2px;
    border-color: #1C6DBB;
  }
  
  .btn-blue:hover, .btn-blue:focus {
    color: #fff;
    background-color: #1c6dbbbf !important;
  }
  
  .flatpickr-calendar {
      background-color: #fff !important; /* or any solid color you want */
  }
  
  .flatpickr-calendar .flatpickr-days .flatpickr-day.flatpickr-disabled, .flatpickr-calendar .flatpickr-days .flatpickr-day.disabled {
      color: #6d677761;
  }

  .form-control[readonly] {
    background-color: #f0f0f0; /* Light grey background */
    border: 1px solid #ccc;   /* Medium grey border */
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 16px;
    color: #333;              /* Dark grey text */
    box-sizing: border-box;
  }
  
  .bg-grey-input{
    background-color: #f0f0f0;
  }

  .select2-container--default .select2-selection--multiple {
    border-radius: 0.375rem;
    border: 1px solid #d9dee3;
}
.select2-selection__choice {
    background-color: #7367f0 !important;
    color: white;
    border: none;
    border-radius: 0.25rem;
    padding-right: 20px !important;
}

input.form-check-input.check-success:checked {
  background-color: #56ca00 !important;
  border-color: gray !important;
}

.alink {
  cursor: pointer;
  color: #007bff !important; /* Bootstrap link blue */
  text-decoration: none;
  transition: color 0.2s;
}

.alink:hover {
  color: #0056b3 !important;
  text-decoration: underline !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}
