#datatable th
{
  text-align:center;
}

/* -------------------- */
/*  customization body */
/* -------------------- */

body{
    background-color: #e9ecef;
}
/* -------------------- */
/* customization fil de navigation */
/* -------------------- */

/* Add a color to all links inside the list */
  .breadcrumb {
    /* padding: 0px 15px !important; */
    padding: 0px 15px;
  }
  ol.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
  }

  /* Add a color on mouse-over */
  ol.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
  }


/* -------------- */
/* SPINNER LOADER */

.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader > img {
    width: 100px;
}

.loader.hidden {
    animation: fadeOut 2s;
    animation-fill-mode: forwards;
}

.ajaxSpinner
{
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%,-50%,0);
  /* opacity: 0.3; */
  object-fit: fill;

}

.ajaxSpinner > img {
  width: 100px;
}

.ajaxSpinner.hidden {
  animation: fadeOut 2s;
  animation-fill-mode: forwards;
}


@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.thumb {
    height: 100px;
    border: 1px solid black;
    margin: 10px;
}

/* -------------- */

input[type=range] {
  -webkit-appearance: none;
  margin: 20px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: #03a9f4;
  border-radius: 25px;
}
input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0,0,0, 1);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #03a9f4;
}
.range-wrap{
  width: 500px;
  position: relative;
}
.range-value{
  position: absolute;
  top: -50%;
}
.range-value span{
  width: 30px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #03a9f4;
  color: #fff;
  font-size: 12px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
}
.range-value span:before{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #03a9f4;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}


/* --------------------------------- */
/* Gestion affichage ticket  */
/* --------------------------------- */

.greylight-color {
  background-color: #a6acb3 !important;
}


/* --------------------------------- */
/* Gestion affichage ticket list request  */
/* --------------------------------- */

/* Cards horizontales */
.dashboard-card {
    border-radius: 18px;
    transition: all 0.3s ease;
    border: none;
}

.dashboard-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icône */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Couleurs */
.card-blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.card-green {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.card-purple {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}

.card-orange {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

/* ------------------------*/
/* Gestion affichage menu  */
/* ------------------------*/

.realtime-mini-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 12px rgba(13, 110, 253, 0.5);
    transition: all 0.25s ease;
}

.realtime-mini-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(13, 110, 253, 0.8);
}

/* Icône */
.realtime-mini-icon {
    font-size: 14px;
    animation: signalPulse 1.5s infinite;
}

/* Badge LIVE */
.live-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff0033;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    animation: liveBlink 1.2s infinite;
    box-shadow: 0 0 8px rgba(255, 0, 51, 0.9);
}

/* Animations */
@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes signalPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Gestion affichage checkbox entity */
.element-not-active-checkbox:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}