a {
  /* override Bootstrap styles */
  color: #212529; /* change the link color */
  text-decoration: none; /* remove the underline */
}

a:hover {
  /* override Bootstrap hover styles */
  color: #212529; /* change the link color on hover 212529 */
  text-decoration: none; /* remove the underline on hover */
}

th > a {
    color: #FFF; /* Sets the link color */
    text-decoration: none; /* Removes the underline */
}

th > a:hover {
    color: #FFF; /* Changes the link color on hover */
    text-decoration: none; /* Removes underline on hover */
}

.scrollTab {
  overflow-x: auto;
  white-space: nowrap;
}

.font30{
	color: #000;
	font-size: 22px !important;
}

.fa-user-circle{
  font-size: 26px !important;
}

.logFont{
	font-size: 26px !important;
}



.copy-btn.copied {
  color: darkgreen;
  font-weight: bold;
}


/****** custom popup*******/

/*@charset "utf-8";*/
/* CSS Document */

.dialog-ovelay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 999999
}
.dialog-ovelay .dialog {
    width: 400px;
    margin: 100px auto 0;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 3px;
    overflow: hidden
}
.dialog-ovelay .dialog header {
    padding: 10px 8px;
    background-color: #f6f7f9;
    border-bottom: 1px solid #e5e5e5
}
.dialog-ovelay .dialog header h3 {
    font-size: 17px;
	font-weight:600;
    margin: 0;
    display: inline-block
}
.dialog-ovelay .dialog header .fa-close {
    float: right;
    color: #c4c5c7;
    cursor: pointer;
    transition: all .5s ease;
    padding: 0 2px;
    border-radius: 1px    
}
.dialog-ovelay .dialog header .fa-close:hover {
    color: #b9b9b9
}
.dialog-ovelay .dialog header .fa-close:active {
    box-shadow: 0 0 5px #673AB7;
    color: #a2a2a2
}
.dialog-ovelay .dialog .dialog-msg {
    padding: 20px 10px
}
.dialog-ovelay .dialog .dialog-msg p{
    margin: 0;
    font-size: 15px;
}
.dialog-ovelay .dialog footer {
    border-top: 1px solid #e5e5e5;
    padding: 8px 10px;
	background:none;
}
.dialog-ovelay .dialog footer .controls {
    direction: rtl;
	float:right;
	padding:10px;
}
.dialog-ovelay .dialog footer .controls .button {
    padding: 5px 15px;
    border-radius: 3px
}
.dialog-ovelay .dialog footer .controls .btn-yes { background-color:#2E363F; border-color:#2E363F; color:#fff; }
.dialog-ovelay .dialog footer .controls .btn-yes:hover {
    background-color: #e6e6e6;
    border-color: #adadad;
    color: #333;
}

.dataTables_length {
    display: none !important;
}




/* Hide the native checkbox element completely */
.switch-input {
    display: none;
}

/* The continuous pill container */
.capsule-switch {
    position: relative;
    display: inline-flex;
    width: 150px;
    height: 36px;
    background-color: #e9ecef; /* Neutral gray background */
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    align-items: center;
    padding: 0;
    border: 1px solid #ced4da;
    overflow: hidden;
}

/* Both labels share equal 50% width and stay persistently visible */
.switch-label {
    width: 50%;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    z-index: 2; /* Keeps text layered above the sliding background */
    transition: color 0.25s ease;
}

/* Base State: When "Present" is selected by default (Checkbox is NOT checked) */
.label-present { color: #ffffff; } /* Active state: clean white */
.label-absent  { color: #6c757d; } /* Inactive state: muted gray */

/* The actual sliding capsule background block */
.switch-slider {
    position: absolute;
    top: 2px;
    left: 2px; /* Starts on the left side over 'Present' */
    width: 72px;
    height: 30px;
    background-color: #28a745; /* Starts as Green */
    border-radius: 18px;
    z-index: 1;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* --- STATE CHANGE: When Checked (Absent is Selected) --- */


/*
.switch-input:checked + .capsule-switch .switch-slider {
    transform: translateX(74px);
    background-color: #dc3545; 
}


.switch-input:checked + .capsule-switch .label-present { color: #6c757d; }
.switch-input:checked + .capsule-switch .label-absent  { color: #ffffff; }
*/

/* --- STATE CHANGE: When Checked (Absent is Selected) --- */

/* Changed '+' to '~' to bypass comments/whitespace */
.switch-input:checked ~ .capsule-switch .switch-slider {
    transform: translateX(74px);
    background-color: #dc3545; /* Morph slider background to Red */
}

/* Changed '+' to '~' to invert text colors cleanly */
.switch-input:checked ~ .capsule-switch .label-present { color: #6c757d; }
.switch-input:checked ~ .capsule-switch .label-absent  { color: #ffffff; }