/* 
    Created on : 16 Aug, 2018, 2:29:05 PM
    Author     : HC19
*/
body{
    background:linear-gradient(-135deg, #c850c0, #4158d0) !important;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 27px;
  /*top:15px;*/
}

.switch input {display:none;}

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

.slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 22px;
  left: 6px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .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(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

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

.login-box-body{ border-radius: 5px;}



/* Data Table Header Styling */
.dataTables_wrapper table.dataTable thead th {
    background-color: #605ca8; /* AdminLTE Purple */
    color: #ffffff;
    border-bottom: 1px solid #555299;
}

/* Pagination - Active State */
.dataTables_wrapper .pagination > .active > a, 
.dataTables_wrapper .pagination > .active > span,
.dataTables_wrapper .pagination > .active > a:hover,
.dataTables_wrapper .pagination > .active > span:hover {
    background-color: #605ca8 !important;
    border-color: #605ca8 !important;
}

/* Row Hover Effect (Optional) */
table.dataTable.table-hover tbody tr:hover {
    background-color: #f3f0ff !important; /* Very light purple tint */
}


/* Override all .btn-primary buttons */
.btn-primary {
    background-color: #605ca8 !important;
    border-color: #555299 !important;
}

.btn-primary:hover, 
.btn-primary:active, 
.btn-primary:focus {
    background-color: #555299 !important; /* Slightly darker for interaction */
    border-color: #484687 !important;
}

/* Override primary background and text utilities */
.bg-primary, .label-primary, .alert-primary {
    background-color: #605ca8 !important;
}

.text-primary {
    color: #605ca8 !important;
}