
#sidebar-menu ul li a:hover i {
    font-weight: 600 !important;
}

body[data-sidebar=dark] #sidebar-menu ul li a i {
    font-size: 15px;
}

#successModal .modal, #errorModal .modal, #infoModal .modal,#successModal1 .modal, #errorModal1 .modal, #infoModal1 .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99999 !important; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.modal {
    z-index: 9999 !important; /* Sit on top */
}

/* Modal Content/Box */
#successModal .modal-content, #errorModal .modal-content, #infoModal .modal-content,#successModal1 .modal-content, #errorModal1 .modal-content, #infoModal1 .modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 400px; /* Maximum width for modal content */
    text-align: center; /* Center text */
    position: relative; /* For close button positioning */
}

/* Success Icon */
.success-icon {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 20px;
}

/* Info Icon */
.info-icon {
    font-size: 50px;
    color: #17a2b8;
    margin-bottom: 20px;
}

/* Error Icon */
.error-icon {
    font-size: 50px;
    color: #dc3545;
    margin-bottom: 20px;
}
/* The Close Button */
.close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* OK Button */
.ok-button {
    background-color: #6f42c1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.ok-button:hover {
    background-color: #5a2d9c;
}

/*  Dashboard Css */
.btn-default1 {
    background: #ffffff;
    border: 2px solid black;
}

.coldata .active {
    background: #007FFF;
    border: 2px solid #007FFF;
    color: white;
}
.custom-color {
    color: #008FFB;
  }
  .custom-font-size {
    font-size: 16px;
  }
  .custom-tick {
    color: #008FFB;
    font-size: 14px;
    font-weight: 600; /* Equivalent to fw-semibold in Bootstrap */
    background-color: darkblue;
    color: white;
    /* border: 5px solid darkblue; */
    border:none;
  }

  .icon-up {
    background: green;
    border: 5px solid green;
    border-radius: 50px;
  }
  .icon-down {
    background: red;
    border: 5px solid red;
    border-radius: 50px;
  }
/*  Dashboard Css */

/* main menu css */
.logo img {
    min-height: 60px;
    max-height: 60px;
    width: auto;
}
.logo {
    line-height: inherit;
}
/* main menu css */
  #manager_id .select2-container,
  #tl_id .select2-container {
      width: 100% !important;
  }
  .btn-min-width {
    min-width: 200px;
  }
  body[data-sidebar=dark] .mms-active {
    color: #fff !important;
    background: #ce0e41;
}
#page-content {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.loader-container {
    margin-left: 45%;
    margin-top: 30%;
}
.card-body {
    background-color: #fff;
}

.flex-grow-1 h4 {
    color: #156EC4;
    font-weight: 700;
    font-size: 1 rem;
}

.table .table-heading {
    background: #007FFF;
    color: white;
}

.table-primary-bg{
    background: #007FFF !important;
    color: white !important;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.card-title button {
    background: #007FFF;
    color: white;
    border: 2px solid #007FFF;
}

/* Engage summay css */
.card_blue {
    background-color: #78bfef !important;
    border-radius: 5px;
    border: 2px solid #dedbdb;
}

.dark_pink {
    background-color: #e1667b7d !important;
    border-radius: 5px;
    border: 2px solid #dedbdb;
}

.light_blue {
    background-color: #d9f0ff !important;
    border-radius: 5px;
    border: 2px solid #dedbdb;
}

.light_pink {
    background-color: #f7c3cc7d !important;
    border-radius: 5px;
    border:2px solid #dedbdb;
}

.light_red {
    background-color: #ffc3cd !important;
    border-radius: 5px;
    border: 2px solid #dedbdb;
}

.light_yellow {
    background-color: #efdfa6de !important;
    border-radius: 5px;
    border:2px solid #dedbdb;
}

.mini-stats-wid {
    margin-bottom: 0 !important;
}


/* for toggle */

.custom_switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.custom_switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom_switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.custom_switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.custom_switch input:checked+.slider {
    background-color: #2196F3;
}

.custom_switch input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.custom_switch input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.custom_switch .slider.round {
    border-radius: 34px;
}

.custom_switch .slider.round:before {
    border-radius: 50%;
}