@charset "UTF-8";
.rubik,
h1, h2, h3, h4, h5, h6,
p,
input[type=submit],
button {
  font-family: "Rubik", "Roboto", "Arial", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.2;
}

h1 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 14px;
  }
}

h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
a:hover h2 {
  color: #ef4136;
}

h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
}

h4 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

p {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: 2px solid #f7941e;
  outline-offset: 2px;
}

.text-left, .textL {
  text-align: left;
}

.text-right, .right, .textR {
  text-align: right;
}

.text-center, .center {
  text-align: center;
}

.font-italic, .italic {
  font-style: italic;
}

.font-bold, .bold {
  font-weight: 700;
}

.font-light, .light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400;
}

.text-uppercase, .upper {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-none, .lower {
  text-transform: none;
}

.text-small {
  font-size: 12px;
}
@media (max-width: 575.98px) {
  .text-small {
    font-size: 11px;
  }
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline, .inline {
  display: inline;
}

.d-inline-block, .inlineBlock {
  display: inline-block;
}

.d-flex {
  display: flex;
}

@media (max-width: 768px) {
  .d-desktop, .ecran {
    display: none;
  }
  .d-mobile, .mobile {
    display: block;
  }
}
@media (min-width: 769px) {
  .d-desktop, .ecran {
    display: block;
  }
  .d-mobile, .mobile {
    display: none;
  }
}
.flex-row {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-item {
  flex: 1;
  text-align: center;
}

.flex-item-large {
  flex: 3;
  text-align: center;
}

.w-100, .fullWidth {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.float-left, .f-left {
  float: left;
}

.float-right, .f-right {
  float: right;
}

.float-none {
  float: none;
}

.clearfix::after, .clear::after {
  content: "";
  display: table;
  clear: both;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.rounded {
  border-radius: 4px;
}

.rounded-sm {
  border-radius: 2px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-xl {
  border-radius: 16px;
}

.rounded-pill, .radius30 {
  border-radius: 30px;
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-0, .noRadius {
  border-radius: 0;
}

.rounded-top, .radiusT {
  border-radius: 10px 10px 0 0;
}

.rounded-bottom, .radiusB {
  border-radius: 0 0 10px 10px;
}

.rounded-left {
  border-radius: 10px 0 0 10px;
}

.rounded-right {
  border-radius: 0 10px 10px 0;
}

.radius6 {
  border-radius: 6px;
}

.radiusBL {
  border-radius: 0 0 0 10px;
}

.radiusBR {
  border-radius: 0 0 10px 0;
}

.shadow {
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.05);
}

.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.shadow-xl {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.shadow-none {
  box-shadow: none;
}

.m-0, .noMarg {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 6px !important;
}

.mt-1, .margT6 {
  margin-top: 6px !important;
}

.mb-1, .margB6 {
  margin-bottom: 6px !important;
}

.ml-1 {
  margin-left: 6px !important;
}

.mr-1 {
  margin-right: 6px !important;
}

.mx-1 {
  margin-left: 6px !important;
  margin-right: 6px !important;
}

.my-1 {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.m-2 {
  margin: 10px !important;
}

.mt-2 {
  margin-top: 10px !important;
}

.mb-2, .margB {
  margin-bottom: 10px !important;
}

.ml-2 {
  margin-left: 10px !important;
}

.mr-2 {
  margin-right: 10px !important;
}

.mx-2 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.my-2 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.m-3 {
  margin: 20px !important;
}

.mt-3, .margT20 {
  margin-top: 20px !important;
}

.mb-3, .margB20 {
  margin-bottom: 20px !important;
}

.ml-3, .margL {
  margin-left: 20px !important;
}

.mr-3, .margR {
  margin-right: 20px !important;
}

.mx-3 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.my-3 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.m-4 {
  margin: 30px !important;
}

.mt-4 {
  margin-top: 30px !important;
}

.mb-4 {
  margin-bottom: 30px !important;
}

.ml-4 {
  margin-left: 30px !important;
}

.mr-4 {
  margin-right: 30px !important;
}

.mx-4 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.my-4 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.m-5 {
  margin: 40px !important;
}

.mt-5, .margT40 {
  margin-top: 40px !important;
}

.mb-5, .margB40 {
  margin-bottom: 40px !important;
}

.ml-5 {
  margin-left: 40px !important;
}

.mr-5 {
  margin-right: 40px !important;
}

.mx-5 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.m-6 {
  margin: 60px !important;
}

.mt-6, .margT60 {
  margin-top: 60px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.ml-6 {
  margin-left: 60px !important;
}

.mr-6 {
  margin-right: 60px !important;
}

.mx-6 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.my-6 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.p-0, .noPad {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 6px !important;
}

.pt-1 {
  padding-top: 6px !important;
}

.pb-1 {
  padding-bottom: 6px !important;
}

.pl-1 {
  padding-left: 6px !important;
}

.pr-1 {
  padding-right: 6px !important;
}

.px-1 {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.py-1 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.p-2, .pad10 {
  padding: 10px !important;
}

.pt-2 {
  padding-top: 10px !important;
}

.pb-2 {
  padding-bottom: 10px !important;
}

.pl-2 {
  padding-left: 10px !important;
}

.pr-2 {
  padding-right: 10px !important;
}

.px-2 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.py-2 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.p-3, .pad20 {
  padding: 20px !important;
}

.pt-3 {
  padding-top: 20px !important;
}

.pb-3 {
  padding-bottom: 20px !important;
}

.pl-3 {
  padding-left: 20px !important;
}

.pr-3 {
  padding-right: 20px !important;
}

.px-3 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.py-3 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.p-4, .pad30 {
  padding: 30px !important;
}

.pt-4 {
  padding-top: 30px !important;
}

.pb-4 {
  padding-bottom: 30px !important;
}

.pl-4 {
  padding-left: 30px !important;
}

.pr-4 {
  padding-right: 30px !important;
}

.px-4 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.py-4 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.p-5, .pad40 {
  padding: 40px !important;
}

.pt-5 {
  padding-top: 40px !important;
}

.pb-5 {
  padding-bottom: 40px !important;
}

.pl-5 {
  padding-left: 40px !important;
}

.pr-5 {
  padding-right: 40px !important;
}

.px-5 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.p-6 {
  padding: 60px !important;
}

.pt-6 {
  padding-top: 60px !important;
}

.pb-6 {
  padding-bottom: 60px !important;
}

.pl-6 {
  padding-left: 60px !important;
}

.pr-6 {
  padding-right: 60px !important;
}

.px-6 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.margT {
  margin-top: 10px;
}

.noPadL {
  padding-left: 0 !important;
}

.noPadR {
  padding-right: 0 !important;
}

.pad6 {
  padding: 6px 10px;
}

@media (max-width: 768px) {
  .noPadMobile {
    padding: 0;
  }
}

.menu-item-active {
  position: relative;
}
.menu-item-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #f7941e;
  z-index: 1;
}

.menu-item-active-horizontal {
  position: relative;
}
.menu-item-active-horizontal::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
  z-index: 1;
}

.nav-item:focus,
.menu-item:focus,
nav a:focus,
.sidenav a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.user-select-none {
  user-select: none;
}

.hover-pointer:hover {
  cursor: pointer;
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 576px) {
  .margMT10 {
    margin-top: 10px;
  }
  .spaced-with-dash-on-xs {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed gray;
  }
}
.bg-degrade {
  background: linear-gradient(308deg, #f7941e 0%, #ef4136 100%) !important;
  color: #ffffff !important;
  /* .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: $color-text-white;

    &:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.8);
      color: $color-text-white;
    }
  } */
}
.bg-degrade h1,
.bg-degrade h2,
.bg-degrade h3,
.bg-degrade h4,
.bg-degrade h5,
.bg-degrade h6,
.bg-degrade p,
.bg-degrade span,
.bg-degrade a,
.bg-degrade i {
  color: inherit;
}

.bg-primary {
  background-color: #ef4136 !important;
}

.bg-secondary {
  background-color: #f7941e !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

.bg-light {
  background-color: #f6f6f6 !important;
}

.bg-dark {
  background-color: #333 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

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

.text-secondary {
  color: #f7941e !important;
}

.text-success {
  color: #28a745 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-light {
  color: #aaa !important;
}

.text-dark {
  color: #333 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-muted {
  color: #999 !important;
}

.separator, .separateur {
  width: 100%;
  border-bottom: 6px solid #efefef;
  margin-bottom: 40px;
  margin-top: 10px;
}

header {
  position: relative;
  width: 100%;
  z-index: 200;
  -webkit-transform: translateZ(0);
}
header .container {
  padding: 0 !important;
}
header img.logo {
  position: absolute;
  margin-top: 14px;
  width: 190px;
}
@media (max-width: 991.98px) {
  header img.logo {
    width: 140px;
    margin-top: 22px;
  }
}
@media (max-width: 767.98px) {
  header img.logo {
    width: 160px;
    margin-top: 10px;
  }
}

.top-header {
  background-color: #f8f8f8;
}
.top-header p {
  padding: 8px 12px;
  color: #444;
  font-size: 12px;
  font-weight: 400;
}
.top-header a p {
  border-left: 1px solid white;
  transition: all 0.2s ease;
}
.top-header a:hover p {
  background-color: #ef4136;
  color: white;
}
.top-header a.menu-admin:hover p {
  background-color: #f7941e;
  color: white;
}
.top-header div.bg-coul2 p {
  color: white !important;
}

.menu-admin {
  text-decoration: none;
}
.menu-admin:visited {
  text-decoration: none;
}

header nav {
  float: right;
}
header nav ul {
  list-style: none;
  position: relative;
  float: left;
  margin: 0;
  padding: 20px 0;
}
header nav ul li {
  float: left;
}
header nav ul li a {
  float: left;
  padding: 8px 3px 6px;
  border-radius: 30px;
  font-family: "Rubik", "Roboto", "Arial", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border: 4px solid transparent;
  color: #333;
  transition: all 0.2s ease;
  position: relative;
}
header nav ul li a:focus {
  outline: none;
  box-shadow: none;
}
header nav ul li a:hover {
  color: #f7941e;
}
header nav ul li a.active {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
header nav ul li a.active::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.admin-reports header nav ul li a[href*="/admin/reports"], body[class*=reports] header nav ul li a[href*="/admin/reports"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.admin-reports header nav ul li a[href*="/admin/reports"]::before, body[class*=reports] header nav ul li a[href*="/admin/reports"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.admin-dashboard header nav ul li a[href*="/admin/dashboard"], body[class*=dashboard] header nav ul li a[href*="/admin/dashboard"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.admin-dashboard header nav ul li a[href*="/admin/dashboard"]::before, body[class*=dashboard] header nav ul li a[href*="/admin/dashboard"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.admin-schedule header nav ul li a[href*="/admin/schedule"], body[class*=schedule] header nav ul li a[href*="/admin/schedule"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.admin-schedule header nav ul li a[href*="/admin/schedule"]::before, body[class*=schedule] header nav ul li a[href*="/admin/schedule"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.admin-tasks header nav ul li a[href*="/admin/tasks"], body[class*=tasks] header nav ul li a[href*="/admin/tasks"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.admin-tasks header nav ul li a[href*="/admin/tasks"]::before, body[class*=tasks] header nav ul li a[href*="/admin/tasks"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.admin-employee header nav ul li a[href*="/admin/employee"], body[class*=employee] header nav ul li a[href*="/admin/employee"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.admin-employee header nav ul li a[href*="/admin/employee"]::before, body[class*=employee] header nav ul li a[href*="/admin/employee"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.admin-site header nav ul li a[href*="/admin/site"], body[class*=site] header nav ul li a[href*="/admin/site"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.admin-site header nav ul li a[href*="/admin/site"]::before, body[class*=site] header nav ul li a[href*="/admin/site"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.admin-activities header nav ul li a[href*="/admin/activities"], body[class*=activities] header nav ul li a[href*="/admin/activities"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.admin-activities header nav ul li a[href*="/admin/activities"]::before, body[class*=activities] header nav ul li a[href*="/admin/activities"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.punch header nav ul li a[href*="/punch"], body[class*=punch] header nav ul li a[href*="/punch"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.punch header nav ul li a[href*="/punch"]::before, body[class*=punch] header nav ul li a[href*="/punch"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.user-modify header nav ul li a[href*="/user/modify"], body[class*=modify] header nav ul li a[href*="/user/modify"], body[class*=profil] header nav ul li a[href*="/user/modify"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.user-modify header nav ul li a[href*="/user/modify"]::before, body[class*=modify] header nav ul li a[href*="/user/modify"]::before, body[class*=profil] header nav ul li a[href*="/user/modify"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
body.billing header nav ul li a[href*="/billing"], body[class*=billing] header nav ul li a[href*="/billing"], body[class*=facturation] header nav ul li a[href*="/billing"] {
  color: #ef4136 !important;
  border: 4px solid transparent !important;
}
body.billing header nav ul li a[href*="/billing"]::before, body[class*=billing] header nav ul li a[href*="/billing"]::before, body[class*=facturation] header nav ul li a[href*="/billing"]::before {
  content: "";
  position: absolute;
  left: -8px;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background-color: #f7941e;
  border-radius: 2px;
}
@media (min-width: 768px) {
  header nav ul li a {
    padding: 8px 11px 6px;
  }
}
header nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  background: #333;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  header nav ul ul li {
    float: none !important;
    width: 200px;
  }
  header nav ul ul a {
    width: 200px;
    line-height: 120%;
    padding: 10px 15px;
    font-weight: 300;
    color: white;
  }
  header nav ul ul a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  header nav ul ul ul {
    top: 0;
    left: 100%;
  }
}
header nav ul li:hover > ul {
  display: block;
}

#navMobile {
  display: none;
}
@media (max-width: 991.98px) {
  #navMobile {
    display: block !important;
    width: 100%;
    background-color: #333;
    padding: 0 !important;
  }
  #navMobile li {
    padding: 0;
    clear: both;
    background-color: #444;
    width: 100%;
    margin: 1px 0;
    transition: background-color 0.2s ease;
  }
  #navMobile li.bg-noir {
    background-color: #222;
  }
  #navMobile li:hover {
    background-color: #555;
  }
  #navMobile li a {
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    padding: 12px !important;
    display: block;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
  }
  #navMobile li a:focus {
    outline: none;
    box-shadow: none;
  }
  #navMobile li a i {
    margin-right: 10px;
  }
  #navMobile li a:hover {
    background: rgba(156, 163, 218, 0.8);
    color: #ffffff;
  }
  #navMobile li a.active {
    background: rgba(247, 148, 30, 0.1);
    color: #ffffff;
  }
  #navMobile li a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #f7941e;
  }
}

@media (max-width: 991.98px) {
  #icon_mobile {
    margin: 38px 20px;
  }
}

.titre-page {
  margin-top: 0;
  height: 44px;
  padding-top: 14px;
}
@media (max-width: 991.98px) {
  .titre-page .container {
    width: 100%;
    padding: 0 10px !important;
  }
}
.titre-page .titre-right {
  float: right;
  padding: 0 10px;
  height: 40px;
}
.titre-page .titre-right i {
  margin-top: -3px;
  margin-left: 10px;
  font-size: 22px;
}

.icon-titre-page {
  width: 40px;
  height: 40px;
  padding: 11px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.icon-titre-page i {
  font-size: 20px;
}

@media (max-width: 991.98px) {
  #nav,
  .top-header {
    display: none;
  }
  .menu-header {
    width: 100%;
    height: 100px;
  }
  .menu-header img.logo {
    margin: 15px 10px 0;
  }
  header .container {
    width: 100%;
    padding: 0 10px !important;
  }
}
.breadcrumb {
  border-radius: 0;
  background-color: inherit;
  padding: 0;
  margin-bottom: 1rem;
}
.breadcrumb .breadcrumb-item {
  display: inline-block;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #6c757d;
  padding: 0 0.5rem;
}
.breadcrumb .breadcrumb-item.active {
  color: #6c757d;
}

/* Choices.js Custom Styling */
.choices {
  margin-bottom: 15px;
}
.choices .choices__inner {
  min-height: 34px;
  padding: 12px 6px 12px 6px !important;
  background-color: #f1f2f2;
  border: 1px solid #e9e9e9;
  border-radius: 0px;
}
.choices .choices__input {
  background-color: transparent;
}
.choices .choices__list--dropdown {
  z-index: 1000;
}
.choices .choices__list--single {
  padding: 0;
}
.choices .choices__list--multiple .choices__item {
  margin-bottom: 0;
  margin-right: 3px;
  border-radius: 2px;
}

.choices[data-type*=select-one]:after {
  right: 11.5px;
  border-color: #333 transparent transparent transparent;
}

#btn-add-speciality {
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
  background: #f7941e !important;
  color: white !important;
  border: none !important;
}
#btn-add-speciality:hover {
  background: #da7a08 !important;
  transform: scale(1.05) !important;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0;
  border: none;
  border-radius: 30px;
  background: none;
  font-family: "Rubik", "Roboto", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  touch-action: manipulation;
  transition: all 0.3s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:focus, .btn:active {
  outline: none;
}
.btn:disabled, .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary,
.btn-default,
button[type=submit],
input[type=submit] {
  background: linear-gradient(308deg, #f7941e 0%, #ef4136 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover:not(:disabled),
.btn-default:hover:not(:disabled),
button[type=submit]:hover:not(:disabled),
input[type=submit]:hover:not(:disabled) {
  background: #ef4136;
  box-shadow: 0 4px 12px rgba(239, 65, 54, 0.3);
  transform: translateY(-1px);
}
.btn-primary:active:not(:disabled),
.btn-default:active:not(:disabled),
button[type=submit]:active:not(:disabled),
input[type=submit]:active:not(:disabled) {
  background: #ed2b1e;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: #ef4136;
  border: 2px solid #ef4136;
}
.btn-secondary:hover:not(:disabled) {
  background: #ef4136;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.btn-secondary:active:not(:disabled) {
  background: #ed2b1e;
  transform: translateY(0);
}

.btn-success {
  background: linear-gradient(308deg, #5db500, #438200);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-success:hover:not(:disabled) {
  background: #438200;
  box-shadow: 0 4px 12px rgba(93, 181, 0, 0.3);
  transform: translateY(-1px);
}
.btn-success:active:not(:disabled) {
  background: #366900;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

.btn-warning {
  background: linear-gradient(308deg, #ffc107, #d39e00);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-warning:hover:not(:disabled) {
  background: #d39e00;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  transform: translateY(-1px);
}
.btn-warning:active:not(:disabled) {
  background: #ba8b00;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

.btn-danger {
  background: linear-gradient(308deg, #bc0000, #890000);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.btn-danger:hover:not(:disabled) {
  background: #890000;
  box-shadow: 0 4px 12px rgba(188, 0, 0, 0.3);
  transform: translateY(-1px);
}
.btn-danger:active:not(:disabled) {
  background: #700000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

.btn-light {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
}
.btn-light:hover:not(:disabled) {
  background: #e9ecef;
  border-color: #adb5bd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.btn-light:active:not(:disabled) {
  background: #dee2e6;
  transform: translateY(0);
}

.btn-outline-primary {
  background: transparent;
  color: #ef4136;
  border: 2px solid #ef4136;
}
.btn-outline-primary:hover:not(:disabled) {
  background: #ef4136;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.btn-outline-primary:active:not(:disabled) {
  background: #ed2b1e;
  transform: translateY(0);
}

.btn-outline-secondary {
  background: transparent;
  color: #f7941e;
  border: 2px solid #f7941e;
}
.btn-outline-secondary:hover:not(:disabled) {
  background: #f7941e;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.btn-outline-secondary:active:not(:disabled) {
  background: #f38809;
  transform: translateY(0);
}

.btn-outline-success {
  background: transparent;
  color: #5db500;
  border: 2px solid #5db500;
}
.btn-outline-success:hover:not(:disabled) {
  background: #5db500;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(93, 181, 0, 0.3);
  transform: translateY(-1px);
}
.btn-outline-success:active:not(:disabled) {
  background: #509c00;
  transform: translateY(0);
}

.btn-outline-warning {
  background: transparent;
  color: #fd7e14;
  border: 2px solid #ffc107;
}
.btn-outline-warning:hover:not(:disabled) {
  background: #ffc107;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  transform: translateY(-1px);
}
.btn-outline-warning:active:not(:disabled) {
  background: #edb100;
  transform: translateY(0);
}

.btn-outline-danger {
  background: transparent;
  color: #bc0000;
  border: 2px solid #bc0000;
}
.btn-outline-danger:hover:not(:disabled) {
  background: #bc0000;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(188, 0, 0, 0.3);
  transform: translateY(-1px);
}
.btn-outline-danger:active:not(:disabled) {
  background: #a30000;
  transform: translateY(0);
}

.btn-outline-light {
  background: transparent;
  color: #aaa;
  border: 2px solid #aaa;
}
.btn-outline-light:hover:not(:disabled) {
  background: #aaa;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.btn-outline-light:active:not(:disabled) {
  background: #9d9d9d;
  transform: translateY(0);
}

.btn-sm {
  padding: 8px 16px 6px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px 14px;
  font-size: 1.125rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-connexion {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-connexion:hover:not(:disabled) {
  background-color: #ffffff;
  color: #ef4136;
}

.btn-reverse {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #e8e8e8;
}
.btn-reverse:hover:not(:disabled) {
  background-color: #333;
  color: #ffffff;
}

.btn-action {
  margin-right: 0.375rem;
  display: inline-block;
}

.btn-group {
  display: inline-flex;
  vertical-align: middle;
}
.btn-group .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group .btn:not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group .btn:hover, .btn-group .btn:focus, .btn-group .btn:active {
  z-index: 1;
}

.btn-loading {
  position: relative;
  pointer-events: none;
}
.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}

@keyframes btn-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
button.btn,
input.btn,
a.btn,
.btn.btn {
  font-family: "Rubik", "Roboto", "Arial", sans-serif !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  border-radius: 30px !important;
  transition: all 0.3s ease-in-out cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  user-select: none !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  touch-action: manipulation !important;
}
button.btn:focus, button.btn:active,
input.btn:focus,
input.btn:active,
a.btn:focus,
a.btn:active,
.btn.btn:focus,
.btn.btn:active {
  outline: none !important;
}

button.btn-primary,
input.btn-primary,
a.btn-primary,
.btn.btn-primary,
button.btn-default,
input.btn-default,
a.btn-default,
.btn.btn-default,
button[type=submit],
input[type=submit] {
  background: linear-gradient(308deg, #f7941e 0%, #ef4136 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
}

button.btn-secondary,
input.btn-secondary,
a.btn-secondary,
.btn.btn-secondary {
  background: transparent !important;
  color: #ef4136 !important;
  border: 2px solid #ef4136 !important;
}

button.btn-success,
input.btn-success,
a.btn-success,
.btn.btn-success {
  background: linear-gradient(308deg, #5db500, #438200) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
}

button.btn-warning,
input.btn-warning,
a.btn-warning,
.btn.btn-warning {
  background: linear-gradient(308deg, #ffc107, #d39e00) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
}

button.btn-danger,
input.btn-danger,
a.btn-danger,
.btn.btn-danger {
  background: linear-gradient(308deg, #bc0000, #890000) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
}

button.btn-light,
input.btn-light,
a.btn-light,
.btn.btn-light {
  background: #f8f9fa !important;
  color: #333 !important;
  border: 1px solid #dee2e6 !important;
}

button.btn-outline-primary,
input.btn-outline-primary,
a.btn-outline-primary,
.btn.btn-outline-primary {
  background: transparent !important;
  color: #ef4136 !important;
  border: 2px solid #ef4136 !important;
}

button.btn-outline-secondary,
input.btn-outline-secondary,
a.btn-outline-secondary,
.btn.btn-outline-secondary {
  background: transparent !important;
  color: #f7941e !important;
  border: 2px solid #f7941e !important;
}

button.btn-outline-success,
input.btn-outline-success,
a.btn-outline-success,
.btn.btn-outline-success {
  background: transparent !important;
  color: #5db500 !important;
  border: 2px solid #5db500 !important;
}

button.btn-outline-warning,
input.btn-outline-warning,
a.btn-outline-warning,
.btn.btn-outline-warning {
  background: transparent !important;
  color: #fd7e14 !important;
  border: 2px solid #ffc107 !important;
}

button.btn-outline-danger,
input.btn-outline-danger,
a.btn-outline-danger,
.btn.btn-outline-danger {
  background: transparent !important;
  color: #bc0000 !important;
  border: 2px solid #bc0000 !important;
}

button.btn-outline-light,
input.btn-outline-light,
a.btn-outline-light,
.btn.btn-outline-light {
  background: transparent !important;
  color: #aaa !important;
  border: 2px solid #aaa !important;
}

button.btn-primary:hover:not(:disabled),
input.btn-primary:hover:not(:disabled),
a.btn-primary:hover:not(:disabled),
.btn.btn-primary:hover:not(:disabled),
button.btn-default:hover:not(:disabled),
input.btn-default:hover:not(:disabled),
a.btn-default:hover:not(:disabled),
.btn.btn-default:hover:not(:disabled),
button[type=submit]:hover:not(:disabled),
input[type=submit]:hover:not(:disabled) {
  background: #ef4136 !important;
  box-shadow: 0 4px 12px rgba(239, 65, 54, 0.3) !important;
  transform: translateY(-1px) !important;
}

button.btn-success:hover:not(:disabled),
input.btn-success:hover:not(:disabled),
a.btn-success:hover:not(:disabled),
.btn.btn-success:hover:not(:disabled) {
  background: #438200 !important;
  box-shadow: 0 4px 12px rgba(93, 181, 0, 0.3) !important;
  transform: translateY(-1px) !important;
}

button.btn-warning:hover:not(:disabled),
input.btn-warning:hover:not(:disabled),
a.btn-warning:hover:not(:disabled),
.btn.btn-warning:hover:not(:disabled) {
  background: #d39e00 !important;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3) !important;
  transform: translateY(-1px) !important;
}

button.btn-danger:hover:not(:disabled),
input.btn-danger:hover:not(:disabled),
a.btn-danger:hover:not(:disabled),
.btn.btn-danger:hover:not(:disabled) {
  background: #890000 !important;
  box-shadow: 0 4px 12px rgba(188, 0, 0, 0.3) !important;
  transform: translateY(-1px) !important;
}

button.btn-outline-primary:hover:not(:disabled),
input.btn-outline-primary:hover:not(:disabled),
a.btn-outline-primary:hover:not(:disabled),
.btn.btn-outline-primary:hover:not(:disabled) {
  background: #ef4136 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-1px) !important;
}

button.btn-outline-secondary:hover:not(:disabled),
input.btn-outline-secondary:hover:not(:disabled),
a.btn-outline-secondary:hover:not(:disabled),
.btn.btn-outline-secondary:hover:not(:disabled) {
  background: #f7941e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-1px) !important;
}

button.btn-outline-success:hover:not(:disabled),
input.btn-outline-success:hover:not(:disabled),
a.btn-outline-success:hover:not(:disabled),
.btn.btn-outline-success:hover:not(:disabled) {
  background: #5db500 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(93, 181, 0, 0.3) !important;
  transform: translateY(-1px) !important;
}

button.btn-outline-warning:hover:not(:disabled),
input.btn-outline-warning:hover:not(:disabled),
a.btn-outline-warning:hover:not(:disabled),
.btn.btn-outline-warning:hover:not(:disabled) {
  background: #ffc107 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3) !important;
  transform: translateY(-1px) !important;
}

button.btn-outline-danger:hover:not(:disabled),
input.btn-outline-danger:hover:not(:disabled),
a.btn-outline-danger:hover:not(:disabled),
.btn.btn-outline-danger:hover:not(:disabled) {
  background: #bc0000 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(188, 0, 0, 0.3) !important;
  transform: translateY(-1px) !important;
}

button.btn-outline-light:hover:not(:disabled),
input.btn-outline-light:hover:not(:disabled),
a.btn-outline-light:hover:not(:disabled),
.btn.btn-outline-light:hover:not(:disabled) {
  background: #aaa !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 767.98px) {
  .btn {
    padding: 10px 20px 8px;
    font-size: 14px;
  }
  .btn-block-mobile {
    display: block;
    width: 100%;
  }
}
.btn {
  color: #fff;
  text-decoration: none;
  background-image: none;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}
.btn.btn-default {
  background: #ef4136;
  background: -moz-linear-gradient(left, #ef4136 0, #f7941e 100%);
  background: -webkit-linear-gradient(left, #ef4136, #f7941e);
  background: linear-gradient(90deg, #ef4136 0, #f7941e);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ef4136",endColorstr="#f7941e",GradientType=1);
  transition: all 0.3s ease;
}
.btn.btn-default:hover {
  background: #ef4136 !important;
  box-shadow: 0 0 6px 0 rgba(107, 26, 2, 0.5);
}

.btn-action {
  margin-right: 0.375rem;
  display: inline-block;
}

form .row > [class^=col-] {
  margin-bottom: 0.5rem;
}
form .noPadL {
  padding-right: 0.25rem;
}
form .noPadR {
  padding-left: 0.25rem;
}

input[type=date],
input[type=datetime-local],
input[type=email],
input[type=number],
input[type=tel],
input[type=text],
input[type=password],
select,
textarea {
  padding: 0.75rem;
  background-color: #f1f2f2;
  color: #666;
  width: 100%;
  font-size: 0.875rem;
  font-family: "Rubik", "Roboto", "Arial", sans-serif;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: left;
  transition: all 0.2s ease-in-out;
}
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #f7941e;
  box-shadow: 0 0 0 3px rgba(247, 148, 30, 0.1);
  background-color: #ffffff;
}
input[type=date]:disabled,
input[type=datetime-local]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=tel]:disabled,
input[type=text]:disabled,
input[type=password]:disabled,
select:disabled,
textarea:disabled {
  background-color: #cbcbcb;
  cursor: not-allowed;
  opacity: 0.7;
}
input[type=date]::placeholder,
input[type=datetime-local]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #aaa;
  opacity: 1;
}

input[type=date],
input[type=time] {
  display: flex;
  min-height: 44px;
}
input[type=date]:before,
input[type=time]:before {
  color: #aaa;
}
input[type=date]:after,
input[type=time]:after {
  color: #999;
  content: attr(placeholder);
}

input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
}
input[type=date]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

select {
  min-height: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23666' d='M6 8L0 2h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  padding-right: 2rem;
}
select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23f7941e' d='M6 8L0 2h12z'/></svg>");
}
select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.4;
}
textarea.auto-resize {
  resize: none;
  overflow: hidden;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}
.form-group .help-text {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.form-row .form-group {
  padding: 0 5px;
  flex: 1;
}

.error-input,
.is-invalid {
  border: 2px solid #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.05);
}
.error-input:focus,
.is-invalid:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.success-input,
.is-valid {
  border: 2px solid #28a745;
  background-color: rgba(40, 167, 69, 0.05);
}
.success-input:focus,
.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

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

.valid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 12px;
  color: #28a745;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 8px;
  margin-left: 0;
  cursor: pointer;
}
input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: 2px solid #f7941e;
  outline-offset: 2px;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.form-check input {
  margin-right: 0.5rem;
}
.form-check label {
  margin-bottom: 0;
  cursor: pointer;
}

.administration form .col-lg-7 {
  padding-right: 3px;
}
.administration form .col-lg-5 {
  padding-left: 3px;
}

.punchManuel input[type=submit] {
  width: 100% !important;
}

.contenteditable {
  background-color: #f1f2f2;
  color: #666;
  width: 100%;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 400;
  border: 1px solid #dee2e6;
  appearance: none;
  text-align: left;
  min-height: 44px;
  padding: 0.75rem;
}
.contenteditable input {
  margin-bottom: 0;
  border: none;
  background: transparent;
  width: 100%;
}
.contenteditable input:focus {
  outline: none;
  outline-width: 0;
}
.contenteditable:focus-within {
  border-color: #f7941e;
  box-shadow: 0 0 0 3px rgba(247, 148, 30, 0.1);
}

input#input-activity-quantity.TIME_UNIT {
  width: 80%;
  border-right-width: 0;
}
@media (max-width: 575.98px) {
  input#input-activity-quantity.TIME_UNIT {
    width: 50%;
  }
}

.activity-selector-container {
  display: flex;
}
.activity-selector-container .choices,
.activity-selector-container #input-activity-id {
  width: 100%;
}

.punch-select {
  margin-top: 10px;
  margin-bottom: 16px;
}

.ui-timepicker-standard {
  font-size: 14px !important;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.choices__inner {
  background-color: #f1f2f2;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  min-height: 44px;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices__list--dropdown {
  border: 1px solid #f7941e;
}
.choices__item--selectable:hover {
  background-color: #f7941e;
  color: white;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1060;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease-in-out ease;
}
.modal.show {
  display: block;
}
.modal.fade {
  opacity: 0;
  transition: opacity 0.3s ease-in-out ease;
}
.modal.fade.show {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
.modal-dialog .modal-content {
  pointer-events: auto;
}

@media (min-width: 576px) {
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin: auto;
  padding: 0;
  outline: 0;
  animation: slideInFromTop 0.3s ease-in-out ease;
}
@media (max-width: 991.98px) {
  .modal-content {
    width: 80%;
    top: 2rem;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .modal-content {
    width: 90%;
    top: 1rem;
  }
}
.modal-content .bloc-profil {
  padding: 1rem 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  background-color: #ef4136;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}
.modal-header .modal-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}
.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 0.1875rem;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}
.modal-footer .btn + .btn {
  margin-left: 0.5rem;
}

.close,
.closePublication,
.btn-close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: -7px -7px -7px auto;
  transition: all 0.2s ease;
}
.close:hover, .close:focus,
.closePublication:hover,
.closePublication:focus,
.btn-close:hover,
.btn-close:focus {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transform: scale(1.1);
}
.close:focus,
.closePublication:focus,
.btn-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.close.btn-close,
.closePublication.btn-close,
.btn-close.btn-close {
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0;
}
.close.btn-close:hover,
.closePublication.btn-close:hover,
.btn-close.btn-close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.close.btn-close::before,
.closePublication.btn-close::before,
.btn-close.btn-close::before {
  content: "×";
  font-size: 24px;
  font-weight: normal;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInFromTop {
  from {
    top: -300px;
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    top: 0;
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.modal-profile .modal-body {
  padding: 2rem;
  text-align: center;
}
.modal-profile .profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid #f7941e;
  overflow: hidden;
}
.modal-profile .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 576px) {
  .modal-confirm .modal-dialog {
    max-width: 400px;
  }
}
.modal-confirm .modal-body {
  text-align: center;
  padding: 2rem;
}
.modal-confirm .modal-body .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f7941e;
}
.modal-confirm .modal-body p {
  font-size: 1.1rem;
  margin-bottom: 0;
}
.modal-confirm .modal-footer {
  justify-content: center;
  border-top: none;
  padding: 0 2rem 2rem;
}
.modal-confirm .modal-footer .btn {
  min-width: 100px;
}

form.publierMessage {
  width: 100%;
}
form.publierMessage textarea {
  width: 100% !important;
  height: 80px;
  border: none;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 4px;
  resize: vertical;
  transition: background-color 0.2s ease;
}
form.publierMessage textarea:focus {
  background-color: white;
  outline: 2px solid #f7941e;
  outline-offset: -2px;
}
form.publierMessage label {
  margin-top: 20px;
  font-weight: 500;
  color: #333;
}
form.publierMessage input[type=checkbox] {
  margin-left: 20px !important;
  margin-right: 8px !important;
}
form.publierMessage input[type=submit] {
  background-color: #333;
  color: white;
  padding: 10px 16px;
  border: none;
  margin: 10px 0;
  font-family: "Rubik", "Roboto", "Arial", sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
form.publierMessage input[type=submit]:hover {
  background-color: #555;
  transform: translateY(-1px);
}
form.publierMessage input[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .modal-dialog {
    margin: 0.5rem;
  }
  .modal-content {
    border-radius: 4px;
  }
  .modal-header,
  .modal-footer {
    padding: 0.75rem;
  }
  .modal-body {
    padding: 0.75rem;
  }
  .modal-footer {
    flex-direction: column;
  }
  .modal-footer .btn {
    width: 100%;
    margin: 0.25rem 0;
  }
}
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: transparent;
  font-size: 14px;
}
table th,
table td {
  padding: 10px;
  vertical-align: middle;
  border-top: 1px solid #dee2e6;
  text-align: left;
}
table th {
  font-weight: 500;
  border-bottom: 2px solid #dee2e6;
  background-color: #f7941e;
  color: #fff;
  user-select: none;
  position: sticky;
  top: 0;
  z-index: 10;
}
table td {
  padding: 5px;
  word-wrap: break-word;
}

.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: transparent;
  font-size: 14px;
}
.table th,
.table td {
  padding: 10px;
  vertical-align: middle !important;
  border-top: 1px solid #dee2e6;
  text-align: left;
}
.table th .form-check,
.table th .btn,
.table th .badge,
.table th a,
.table th span,
.table th i,
.table td .form-check,
.table td .btn,
.table td .badge,
.table td a,
.table td span,
.table td i {
  vertical-align: middle;
  line-height: 1.2;
}
.table th input[type=checkbox],
.table td input[type=checkbox] {
  vertical-align: middle;
  margin: 0 8px 0 0;
}
.table th .btn,
.table td .btn {
  margin: 2px;
  vertical-align: middle;
  line-height: 1.2;
}
.table th {
  font-weight: 500;
  border-bottom: 2px solid #dee2e6;
  background-color: #f7941e;
  color: #fff;
  user-select: none;
  position: sticky;
  top: 0;
  z-index: 10;
  vertical-align: middle !important;
}
.table td {
  padding: 8px 10px;
  word-wrap: break-word;
  vertical-align: middle !important;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #fff;
}
.table-striped tbody tr:nth-of-type(even) {
  background-color: #f8f8f8;
}

.table-hover tbody tr:hover {
  background-color: rgba(247, 148, 30, 0.12);
  transition: background-color 0.15s ease-in-out;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered th {
  border-bottom-width: 2px;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.liste-rapport {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.liste-rapport ::-webkit-scrollbar-track {
  background-color: #f7941e;
}
.liste-rapport ::-webkit-scrollbar {
  position: absolute;
  width: 5px;
  background-color: #f7941e;
}
.liste-rapport ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #444;
}
.liste-rapport th {
  text-align: left;
  padding: 10px;
  vertical-align: middle;
  background-color: #f7941e;
  color: #fff;
  cursor: pointer;
  border-right: 2px solid white;
  user-select: none;
  transition: background-color 0.2s ease;
  position: relative;
}
.liste-rapport th:last-child {
  border-right: none;
}
.liste-rapport th:hover {
  background-color: #da7a08;
}
.liste-rapport th.selection {
  background-color: #ef4136;
  color: #fff;
}
.liste-rapport th .flecheDesc,
.liste-rapport th .flecheAsc {
  width: 0;
  height: 0;
  float: right;
  margin: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.liste-rapport th .flecheDesc {
  border-bottom: 5px solid black;
  border-bottom-color: white;
}
.liste-rapport th .flecheAsc {
  border-top: 5px solid black;
  border-top-color: white;
}
.liste-rapport tbody .active td,
.liste-rapport tbody .active th {
  color: white;
  border: none;
  background: linear-gradient(to right, #f7941e 0%, #ef4136 100%);
  background-position: 0 0;
  background-attachment: fixed;
}
.liste-rapport tr:hover {
  background-color: rgba(247, 148, 30, 0.12);
  transition: background-color 0.15s ease;
}

.flecheDesc,
.flecheAsc {
  width: 0;
  height: 0;
  float: right;
  margin: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transition: all 0.2s ease;
}

.flecheDesc {
  border-bottom: 5px solid black;
}

.flecheAsc {
  border-top: 5px solid black;
}

#table-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#table-wrapper table {
  width: 100%;
  min-width: 600px;
}
#table-wrapper table th,
#table-wrapper table td {
  vertical-align: middle !important;
}
#table-wrapper table th .form-check,
#table-wrapper table th .btn,
#table-wrapper table th .badge,
#table-wrapper table th a,
#table-wrapper table th span,
#table-wrapper table td .form-check,
#table-wrapper table td .btn,
#table-wrapper table td .badge,
#table-wrapper table td a,
#table-wrapper table td span {
  vertical-align: middle;
}
#table-wrapper table th input[type=checkbox],
#table-wrapper table td input[type=checkbox] {
  vertical-align: middle;
  margin: 0 8px 0 0;
}
#table-wrapper table th .btn,
#table-wrapper table td .btn {
  margin: 2px;
  vertical-align: middle;
}
#table-wrapper thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #f7941e;
}
#table-wrapper thead th .text {
  position: absolute;
  top: -20px;
  z-index: 2;
  height: 20px;
  width: 35%;
  border: 1px solid red;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive table {
  margin-bottom: 0;
  min-width: 576px;
}
.table-responsive::-webkit-scrollbar {
  height: 8px;
}
.table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.text-left, .textL {
  text-align: left !important;
}

.text-center, .center {
  text-align: center !important;
}

.text-right, .textR, .right {
  text-align: right !important;
}

.col-width-10 {
  width: 10% !important;
}

.col-width-15 {
  width: 15% !important;
}

.col-width-20 {
  width: 20% !important;
}

.col-width-25 {
  width: 25% !important;
}

.col-width-30 {
  width: 30% !important;
}

.col-width-35 {
  width: 35% !important;
}

.table-success {
  background-color: rgba(40, 167, 69, 0.1);
  border-left: 4px solid #28a745;
}

.table-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
}

.table-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 4px solid #dc3545;
}

.table-info {
  background-color: rgba(23, 162, 184, 0.1);
  border-left: 4px solid #17a2b8;
}

.data-table .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 4px;
}
.data-table .table-header .table-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.data-table .table-header .table-actions {
  display: flex;
  gap: 0.5rem;
}
.data-table .table-footer {
  display: flex;
  justify-content: between;
  align-items: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}
.data-table .table-footer .table-info {
  font-size: 0.875rem;
  color: #6c757d;
}
.data-table .table-footer .pagination {
  margin: 0;
}

.table-loading {
  position: relative;
  pointer-events: none;
}
.table-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
.table-loading::before {
  content: "Chargement...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  font-weight: 500;
  color: #666;
}

@media print {
  .table {
    border-collapse: collapse !important;
  }
  .table th,
  .table td {
    background-color: #fff !important;
    border: 1px solid #000 !important;
  }
  .table th {
    font-weight: bold !important;
  }
  .table-actions,
  .table-footer {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .liste-rapport {
    font-size: 12px;
  }
  .liste-rapport th,
  .liste-rapport td {
    padding: 8px 4px;
  }
  .table-responsive {
    font-size: 0.875rem;
  }
}
@media (max-width: 767.98px) and (max-width: 480px) {
  .table-stack th,
  .table-stack td {
    display: block;
    width: 100% !important;
    text-align: left !important;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem;
  }
  .table-stack th {
    background-color: transparent;
    color: #333;
    font-weight: bold;
  }
  .table-stack tbody tr {
    border: 1px solid #ddd;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    display: block;
  }
}
.liste, .admin-list li {
  display: block;
  position: relative;
  padding: 12px;
  margin-bottom: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.liste:nth-of-type(even), .admin-list li:nth-of-type(even) {
  background: #f1f2f2;
}
.liste:nth-of-type(odd), .admin-list li:nth-of-type(odd) {
  background: #e6e7e8;
}
.liste p, .admin-list li p {
  margin: 0;
  line-height: 1.4;
}
.liste:hover, .admin-list li:hover {
  background: linear-gradient(to right, #f7941e 0%, #ef4136 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  z-index: 200;
  transform: translateX(4px);
  margin-left: -4px;
  margin-right: -4px;
  border-radius: 8px;
}

.admin-list {
  list-style-type: none;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 2rem;
  padding-left: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.admin-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.admin-list li:last-child {
  border-bottom: none;
}
.admin-list li .employee-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-list li .employee-info .employee-details {
  flex: 1;
}
.admin-list li .employee-info .employee-details .employee-name {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.25rem;
}
.admin-list li .employee-info .employee-details .employee-role {
  font-size: 0.875rem;
  color: #666;
  opacity: 0.8;
}
.admin-list li .employee-info .employee-details .employee-email {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.25rem;
}
.admin-list li .employee-info .employee-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.admin-list li:hover .employee-actions {
  opacity: 1;
}

.liste i.fa-pencil,
.liste i.fa-trash,
.liste i.fa-toggle-on,
.liste i.fa-toggle-off,
.liste i.fa-user-secret,
.liste i.fa-address-book,
.liste i.fa-gear,
.liste i.fa-refresh,
.admin-list li i.fa-pencil,
.admin-list li i.fa-trash,
.admin-list li i.fa-toggle-on,
.admin-list li i.fa-toggle-off,
.admin-list li i.fa-user-secret,
.admin-list li i.fa-address-book,
.admin-list li i.fa-gear,
.admin-list li i.fa-refresh {
  color: #333;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.liste i.fa-pencil:hover,
.liste i.fa-trash:hover,
.liste i.fa-toggle-on:hover,
.liste i.fa-toggle-off:hover,
.liste i.fa-user-secret:hover,
.liste i.fa-address-book:hover,
.liste i.fa-gear:hover,
.liste i.fa-refresh:hover,
.admin-list li i.fa-pencil:hover,
.admin-list li i.fa-trash:hover,
.admin-list li i.fa-toggle-on:hover,
.admin-list li i.fa-toggle-off:hover,
.admin-list li i.fa-user-secret:hover,
.admin-list li i.fa-address-book:hover,
.admin-list li i.fa-gear:hover,
.admin-list li i.fa-refresh:hover {
  background: rgba(188, 0, 0, 0.1);
  color: #bc0000;
  transform: scale(1.1);
}
.liste i.fa-pencil:active,
.liste i.fa-trash:active,
.liste i.fa-toggle-on:active,
.liste i.fa-toggle-off:active,
.liste i.fa-user-secret:active,
.liste i.fa-address-book:active,
.liste i.fa-gear:active,
.liste i.fa-refresh:active,
.admin-list li i.fa-pencil:active,
.admin-list li i.fa-trash:active,
.admin-list li i.fa-toggle-on:active,
.admin-list li i.fa-toggle-off:active,
.admin-list li i.fa-user-secret:active,
.admin-list li i.fa-address-book:active,
.admin-list li i.fa-gear:active,
.admin-list li i.fa-refresh:active {
  transform: scale(0.95);
}
.liste:hover i.fa-pencil,
.liste:hover i.fa-trash,
.liste:hover i.fa-toggle-on,
.liste:hover i.fa-toggle-off,
.liste:hover i.fa-user-secret,
.liste:hover i.fa-address-book,
.liste:hover i.fa-gear,
.liste:hover i.fa-refresh,
.admin-list li:hover i.fa-pencil,
.admin-list li:hover i.fa-trash,
.admin-list li:hover i.fa-toggle-on,
.admin-list li:hover i.fa-toggle-off,
.admin-list li:hover i.fa-user-secret,
.admin-list li:hover i.fa-address-book,
.admin-list li:hover i.fa-gear,
.admin-list li:hover i.fa-refresh {
  color: white;
}
.liste:hover i.fa-pencil:hover,
.liste:hover i.fa-trash:hover,
.liste:hover i.fa-toggle-on:hover,
.liste:hover i.fa-toggle-off:hover,
.liste:hover i.fa-user-secret:hover,
.liste:hover i.fa-address-book:hover,
.liste:hover i.fa-gear:hover,
.liste:hover i.fa-refresh:hover,
.admin-list li:hover i.fa-pencil:hover,
.admin-list li:hover i.fa-trash:hover,
.admin-list li:hover i.fa-toggle-on:hover,
.admin-list li:hover i.fa-toggle-off:hover,
.admin-list li:hover i.fa-user-secret:hover,
.admin-list li:hover i.fa-address-book:hover,
.admin-list li:hover i.fa-gear:hover,
.admin-list li:hover i.fa-refresh:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.section .col-gauche .active {
  background: linear-gradient(to right, #f7941e 0%, #ef4136 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  z-index: 200;
}
.section .col-gauche .active i.fa-trash {
  color: white;
}
.section .col-gauche .active:hover i.fa-trash {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.administration .col-gauche .active {
  background-color: #f7941e;
  background-image: none;
  color: white;
}
.administration .col-gauche .active:hover {
  background-color: #da7a08;
}

.icon-cercle-site,
.icon-cercle-employes {
  float: right;
  margin-top: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.icon-cercle-site i,
.icon-cercle-employes i {
  font-size: 20px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}
.icon-cercle-site:hover,
.icon-cercle-employes:hover {
  background: #f7941e;
  transform: scale(1.1);
}
.icon-cercle-site:hover i,
.icon-cercle-employes:hover i {
  color: white;
}

.icon-cercle-employes {
  padding-left: 6px;
}

.list-item-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.list-item-content .list-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f7941e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.list-item-content .list-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.list-item-content .list-body {
  flex: 1;
  min-width: 0;
}
.list-item-content .list-body .list-title {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-item-content .list-body .list-subtitle {
  font-size: 0.875rem;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-item-content .list-body .list-meta {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.25rem;
}
.list-item-content .list-actions {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.liste:hover .list-actions, .admin-list li:hover .list-actions {
  opacity: 1;
}

.list-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.list-badge.badge-success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}
.list-badge.badge-warning {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.2);
}
.list-badge.badge-danger {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}
.list-badge.badge-primary {
  background: rgba(247, 148, 30, 0.1);
  color: #f7941e;
  border: 1px solid rgba(247, 148, 30, 0.2);
}
.list-badge.badge-secondary {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.2);
}

.list-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.list-filters .filter-group {
  flex: 1;
}
.list-filters .filter-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.list-filters .filter-group select,
.list-filters .filter-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.875rem;
}
.list-filters .filter-group select:focus,
.list-filters .filter-group input:focus {
  outline: none;
  border-color: #f7941e;
  box-shadow: 0 0 0 2px rgba(247, 148, 30, 0.1);
}
.list-filters .filter-actions {
  display: flex;
  align-items: end;
  gap: 0.5rem;
}

.list-empty {
  text-align: center;
  padding: 3rem 2rem;
  color: #666;
}
.list-empty .empty-icon {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 1rem;
}
.list-empty .empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.list-empty .empty-description {
  margin-bottom: 2rem;
  line-height: 1.6;
}
.list-empty .empty-action .btn {
  padding: 0.75rem 2rem;
}

.list-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
}
.list-pagination .pagination-info {
  font-size: 0.875rem;
  color: #666;
}
.list-pagination .pagination-controls {
  display: flex;
  gap: 0.5rem;
}
.list-pagination .pagination-controls .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.list-pagination .pagination-controls .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 991.98px) {
  .admin-list li .employee-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .admin-list li .employee-info .employee-actions {
    align-self: flex-end;
    opacity: 1;
  }
  .list-filters {
    flex-direction: column;
  }
  .list-filters .filter-group {
    margin-bottom: 1rem;
  }
  .list-filters .filter-group:last-child {
    margin-bottom: 0;
  }
  .list-item-content .list-actions {
    opacity: 1;
  }
  .icon-cercle-site,
  .icon-cercle-employes {
    position: static;
    float: none;
    margin: 0.5rem 0 0 0;
  }
}
@media (max-width: 767.98px) {
  .liste, .admin-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .list-item-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .list-item-content .list-body {
    width: 100%;
  }
  .list-item-content .list-actions {
    align-self: flex-end;
  }
}
.card, .notification-card, .content-card, .stats-card, .profil-employe {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.card:hover, .notification-card:hover, .content-card:hover, .stats-card:hover, .profil-employe:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.card .card-header, .notification-card .card-header, .content-card .card-header, .stats-card .card-header, .profil-employe .card-header {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.card .card-header .card-title, .notification-card .card-header .card-title, .content-card .card-header .card-title, .stats-card .card-header .card-title, .profil-employe .card-header .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.card .card-header .card-subtitle, .notification-card .card-header .card-subtitle, .content-card .card-header .card-subtitle, .stats-card .card-header .card-subtitle, .profil-employe .card-header .card-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin: 0.25rem 0 0 0;
}
.card .card-body, .notification-card .card-body, .content-card .card-body, .stats-card .card-body, .profil-employe .card-body {
  padding: 1.5rem;
}
.card .card-footer, .notification-card .card-footer, .content-card .card-footer, .stats-card .card-footer, .profil-employe .card-footer {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.profil-employe {
  text-align: center;
}
.profil-employe.margT {
  margin-top: 43px;
}
@media (max-width: 991.98px) {
  .profil-employe.margT {
    margin-top: 20px;
  }
}
.profil-employe .profile-header {
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(135deg, #f7941e 0%, #ef4136 100%);
  color: white;
  margin: -1.5rem -1.5rem 1.5rem -1.5rem;
}
.profil-employe .profile-header .img-profil {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white;
  margin: 0 auto 1rem;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.profil-employe .profile-header .profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.profil-employe .profile-header .profile-role {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.profil-employe .profile-header .specialite {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}
.profil-employe .profile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.profil-employe .profile-stats .stat-item {
  text-align: center;
}
.profil-employe .profile-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #f7941e;
  display: block;
  margin-bottom: 0.25rem;
}
.profil-employe .profile-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.profil-employe .profile-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.profil-employe .profile-actions .btn {
  flex: 1;
  max-width: 120px;
}

#user-profile {
  font-family: "Rubik", "Roboto", "Arial", sans-serif;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
#user-profile .top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
#user-profile .top .picture {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  background-color: #f8f9fa;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#user-profile .top .picture:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: scale(1.05);
}
#user-profile .top::after {
  content: "";
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}
#user-profile .top .firstName,
#user-profile .top .lastName,
#user-profile .top .speciality {
  position: absolute;
  left: calc(80px + 1.5rem);
  width: calc(100% - 80px - 1.5rem);
  display: block;
  margin: 0;
}
#user-profile .top .firstName {
  top: 50%;
  transform: translateY(-100%);
}
#user-profile .top .firstName, #user-profile .top .firstName.big-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
#user-profile .top .lastName {
  top: 50%;
  transform: translateY(-25%);
}
#user-profile .top .lastName, #user-profile .top .lastName.big-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4a5568;
  margin: 0;
  line-height: 1.3;
}
#user-profile .top .speciality {
  top: 50%;
  transform: translateY(50%);
}
#user-profile .top .speciality, #user-profile .top .speciality.normal-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f7941e;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}
#user-profile .top .speciality::before, #user-profile .top .speciality.normal-text::before {
  content: "✦ ";
  color: #f7941e;
  margin-right: 0.25rem;
}
#user-profile .bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid #f7fafc;
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.7;
}
#user-profile .bottom i {
  margin-right: 0.5rem;
  color: #f7941e;
  font-size: 1rem;
}
#user-profile .bottom b {
  color: #2d3748;
  font-weight: 600;
}
#user-profile .bottom br + * {
  margin-top: 0.5rem;
  display: inline-block;
}
@media (max-width: 991.98px) {
  #user-profile {
    padding: 1.25rem;
  }
  #user-profile .top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  #user-profile .top .picture {
    width: 100px;
    height: 100px;
  }
  #user-profile .top .firstName,
  #user-profile .top .lastName,
  #user-profile .top .speciality {
    position: static !important;
    left: auto !important;
    width: 100% !important;
    transform: none !important;
  }
  #user-profile .top .firstName {
    order: 2;
  }
  #user-profile .top .firstName, #user-profile .top .firstName.big-text {
    font-size: 1.75rem;
  }
  #user-profile .top .lastName {
    order: 3;
  }
  #user-profile .top .speciality {
    order: 4;
  }
}
@media (max-width: 767.98px) {
  #user-profile {
    padding: 1rem;
    border-radius: 12px;
  }
  #user-profile .top {
    gap: 0.5rem;
  }
  #user-profile .top .picture {
    width: 80px;
    height: 80px;
  }
  #user-profile .top .firstName,
  #user-profile .top .lastName,
  #user-profile .top .speciality {
    position: static !important;
    left: auto !important;
    width: 100% !important;
    transform: none !important;
  }
  #user-profile .top .firstName, #user-profile .top .firstName.big-text {
    font-size: 1.5rem;
  }
  #user-profile .top .lastName, #user-profile .top .lastName.big-text {
    font-size: 1rem;
  }
  #user-profile .top .speciality, #user-profile .top .speciality.normal-text {
    font-size: 0.8125rem;
  }
  #user-profile .bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 0.8125rem;
  }
}

.stats-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.stats-card .stats-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f7941e 0%, #ef4136 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.stats-card .stats-icon i {
  font-size: 1.5rem;
  color: white;
}
.stats-card .stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stats-card .stats-label {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stats-card .stats-change {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.stats-card .stats-change.positive {
  color: #28a745;
}
.stats-card .stats-change.positive::before {
  content: "↗ ";
}
.stats-card .stats-change.negative {
  color: #dc3545;
}
.stats-card .stats-change.negative::before {
  content: "↘ ";
}
.stats-card.stats-primary .stats-icon {
  background: linear-gradient(135deg, #f7941e 0%, #ef4136 100%);
}
.stats-card.stats-primary .stats-number {
  color: #f7941e;
}
.stats-card.stats-success .stats-icon {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}
.stats-card.stats-success .stats-number {
  color: #28a745;
}
.stats-card.stats-warning .stats-icon {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}
.stats-card.stats-warning .stats-number {
  color: #ffc107;
}
.stats-card.stats-danger .stats-icon {
  background: linear-gradient(135deg, #dc3545 0%, #e91e63 100%);
}
.stats-card.stats-danger .stats-number {
  color: #dc3545;
}

.content-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.content-card .card-content {
  padding: 1.5rem;
}
.content-card .card-content .card-date {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.content-card .card-content .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.content-card .card-content .card-title a {
  color: inherit;
  transition: color 0.2s ease;
}
.content-card .card-content .card-title a:hover {
  color: #f7941e;
}
.content-card .card-content .card-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.content-card .card-content .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.content-card .card-content .card-tags .tag {
  padding: 0.25rem 0.75rem;
  background: rgba(247, 148, 30, 0.1);
  color: #f7941e;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.content-card .card-content .card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-card .card-content .card-actions .btn-link {
  color: #f7941e;
  font-weight: 500;
  transition: color 0.2s ease;
}
.content-card .card-content .card-actions .btn-link:hover {
  color: #ef4136;
}

.notification-card {
  border-left: 4px solid #f7941e;
  margin-bottom: 1rem;
}
.notification-card .notification-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem 0;
}
.notification-card .notification-header .notification-icon {
  width: 40px;
  height: 40px;
  background: #f7941e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.notification-card .notification-header .notification-content {
  flex: 1;
}
.notification-card .notification-header .notification-content .notification-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}
.notification-card .notification-header .notification-content .notification-time {
  font-size: 0.8rem;
  color: #999;
}
.notification-card .notification-header .notification-actions .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.notification-card .notification-body {
  padding: 0 1.5rem 1.5rem calc(1.5rem + 40px + 1rem);
  color: #666;
  line-height: 1.5;
}
.notification-card.notification-success {
  border-left-color: #28a745;
}
.notification-card.notification-success .notification-icon {
  background: #28a745;
}
.notification-card.notification-warning {
  border-left-color: #ffc107;
}
.notification-card.notification-warning .notification-icon {
  background: #ffc107;
  color: #333;
}
.notification-card.notification-error {
  border-left-color: #dc3545;
}
.notification-card.notification-error .notification-icon {
  background: #dc3545;
}
.notification-card.notification-info {
  border-left-color: #17a2b8;
}
.notification-card.notification-info .notification-icon {
  background: #17a2b8;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.cards-grid.grid-1 {
  grid-template-columns: 1fr;
}
.cards-grid.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.cards-grid.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.cards-grid.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cards-masonry {
  column-count: 3;
  column-gap: 1.5rem;
}
.cards-masonry .card, .cards-masonry .profil-employe, .cards-masonry .stats-card, .cards-masonry .content-card, .cards-masonry .notification-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}
@media (max-width: 1199.98px) {
  .cards-masonry {
    column-count: 2;
  }
}
@media (max-width: 767.98px) {
  .cards-masonry {
    column-count: 1;
  }
}

.card-interactive {
  cursor: pointer;
  transition: all 0.3s ease;
}
.card-interactive:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.card-interactive:hover .card-title {
  color: #f7941e;
}
.card-interactive:active {
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 991.98px) {
  .card, .profil-employe, .stats-card, .content-card, .notification-card {
    margin-bottom: 1rem;
  }
  .profil-employe .profile-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .profil-employe .profile-actions {
    flex-direction: column;
  }
  .profil-employe .profile-actions .btn {
    max-width: none;
  }
  .cards-grid.grid-2, .cards-grid.grid-3, .cards-grid.grid-4 {
    grid-template-columns: 1fr;
  }
  .notification-card .notification-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .notification-card .notification-header .notification-actions {
    align-self: flex-end;
    margin-top: 0.5rem;
  }
  .notification-card .notification-body {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .card, .profil-employe, .stats-card, .content-card, .notification-card {
    border-radius: 8px;
  }
  .card .card-body, .profil-employe .card-body, .stats-card .card-body, .content-card .card-body, .notification-card .card-body {
    padding: 1rem;
  }
  .stats-card {
    padding: 1.5rem 1rem;
  }
  .stats-card .stats-number {
    font-size: 2rem;
  }
}
.punch-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .punch-details {
    flex-direction: column;
  }
}

.img-punch {
  width: 190px;
  height: 190px;
  float: left;
  background-color: #f8f8f8;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-right: 1rem;
}
.img-punch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-punch:empty::after {
  content: "📷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #aaa;
}
@media (max-width: 767.98px) {
  .img-punch {
    width: 120px;
    height: 120px;
    float: none;
    margin: 0 auto 1rem;
  }
}

.type-punch {
  width: 130px;
  height: 190px;
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 1rem;
}
.type-punch i {
  font-size: 74px;
  margin-bottom: 0.5rem;
  color: #f7941e;
}
.type-punch p {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 34px;
  margin: 10px 0 0;
  color: #333;
}
.type-punch span {
  font-size: 48px;
  font-weight: 700;
  color: #ef4136;
  display: block;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .type-punch {
    width: 100%;
    height: auto;
    float: none;
    margin: 0;
    padding: 1rem;
  }
}

.type-punchManuel {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 90px;
  padding: 1rem 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid transparent;
}
.type-punchManuel span {
  font-size: 48px;
  font-weight: 700;
  margin-right: 1rem;
  z-index: 2;
  position: relative;
}
.type-punchManuel i {
  font-size: 74px;
  z-index: 2;
  position: relative;
}
.type-punchManuel p {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 34px;
  margin: 10px 0;
  z-index: 2;
  position: relative;
}
.type-punchManuel.bg-vert {
  background: linear-gradient(308deg, #5db500 0%, #438200 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}
.type-punchManuel.bg-vert:hover {
  background: #438200;
  box-shadow: 0 4px 12px rgba(67, 130, 0, 0.3);
  transform: translateY(-1px);
}
.type-punchManuel.bg-vert:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.type-punchManuel.bg-vert:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.type-punchManuel.bg-vert:focus {
  outline: 3px solid rgba(93, 181, 0, 0.3);
  outline-offset: 2px;
}
.type-punchManuel.bg-rouge {
  background: linear-gradient(308deg, #bc0000 0%, #890000 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}
.type-punchManuel.bg-rouge:hover {
  background: #890000;
  box-shadow: 0 4px 12px rgba(137, 0, 0, 0.3);
  transform: translateY(-1px);
}
.type-punchManuel.bg-rouge:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.type-punchManuel.bg-rouge:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.type-punchManuel.bg-rouge:focus {
  outline: 3px solid rgba(188, 0, 0, 0.3);
  outline-offset: 2px;
}
.type-punchManuel:disabled, .type-punchManuel.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}
@media (max-width: 767.98px) {
  .type-punchManuel {
    height: auto;
    padding: 1.5rem;
    flex-direction: column;
  }
  .type-punchManuel span {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .type-punchManuel i {
    font-size: 48px;
    margin-bottom: 0.5rem;
  }
}

.liste-punchs .ligne {
  border-radius: 40px;
  border: 4px solid white;
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.liste-punchs .ligne:hover {
  border-color: #f7941e;
  box-shadow: 0 4px 12px rgba(247, 148, 30, 0.2);
  transform: translateY(-2px);
}
.liste-punchs .ligne.active {
  color: white;
  border: none;
  background: linear-gradient(to right, #f7941e 0%, #ef4136 100%);
  box-shadow: 0 6px 20px rgba(239, 65, 54, 0.3);
}
.liste-punchs .ligne.active:hover {
  border: none;
  transform: translateY(-1px);
}
.liste-punchs .ligne.active i {
  color: white;
}
.liste-punchs .punch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
}
.liste-punchs .punch-item .punch-time {
  font-weight: 600;
  font-size: 1.1rem;
}
.liste-punchs .punch-item .punch-type {
  font-size: 0.9rem;
  opacity: 0.8;
}
.liste-punchs .punch-item .punch-location {
  font-size: 0.8rem;
  color: #666;
}
.liste-punchs .punch-item .punch-actions {
  display: flex;
  gap: 0.5rem;
}
.liste-punchs .punch-item .punch-actions .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}

.punch-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}
.punch-status.status-in {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.punch-status.status-out {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}
.punch-status.status-break {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}
.punch-status::before {
  content: "●";
  font-size: 0.5rem;
}

.punch-select {
  margin-top: 10px;
  margin-bottom: 16px;
}
.punch-select .punch-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.punch-select .punch-option {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.punch-select .punch-option:hover {
  border-color: #f7941e;
  background-color: rgba(247, 148, 30, 0.05);
}
.punch-select .punch-option.selected {
  border-color: #f7941e;
  background-color: rgba(247, 148, 30, 0.1);
}
.punch-select .punch-option .option-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #f7941e;
}
.punch-select .punch-option .option-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.punch-select .punch-option .option-description {
  font-size: 0.875rem;
  color: #6c757d;
}

.site-map {
  width: 100%;
  min-width: 280px;
  height: 300px;
  background-color: #ddd;
  border: 1px solid #ccc;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.site-map.loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-map.loading::after {
  content: "Chargement de la carte...";
  color: #666;
  font-style: italic;
}
.site-map .map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.position-relative:has(.map-zoom), .position-relative:has(.map-img) {
  min-height: 250px;
}
@media (max-width: 767.98px) {
  .position-relative:has(.map-zoom), .position-relative:has(.map-img) {
    min-height: 200px;
  }
}

.map-container,
.punch-map-container {
  position: relative;
  min-height: 250px;
}
@media (max-width: 767.98px) {
  .map-container,
  .punch-map-container {
    min-height: 200px;
  }
}

.map-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  min-height: 250px;
  object-fit: cover;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  display: block;
}
@media (max-width: 767.98px) {
  .map-img {
    min-height: 200px;
    max-height: 250px;
  }
}

.map-zoom {
  position: absolute !important;
  z-index: 50;
  right: 10px !important;
  left: auto !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 0.25rem !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #333 !important;
  font-size: 18px !important;
  font-weight: bold !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.2s ease-in-out;
  background-image: none !important;
}
.map-zoom:hover, .map-zoom:hover:not(:disabled) {
  background: rgb(255, 255, 255) !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
  color: #ef4136 !important;
  text-decoration: none !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08) !important;
}
.map-zoom:active, .map-zoom:active:not(:disabled) {
  background: rgb(255, 255, 255) !important;
  transform: translateY(0) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}
.map-zoom:focus {
  outline: 2px solid #ef4136 !important;
  outline-offset: 2px !important;
}

.map-zoom-plus,
a.map-zoom-plus,
.btn.map-zoom-plus {
  top: 10px !important;
}

.map-zoom-minus,
a.map-zoom-minus,
.btn.map-zoom-minus {
  top: 56px !important;
}

.position-relative .map-zoom,
.position-relative a.map-zoom,
.position-relative .btn.map-zoom {
  position: absolute !important;
  right: 10px !important;
  left: auto !important;
}

.punch-timeline .timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 1.5rem;
}
.punch-timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dee2e6;
}
.punch-timeline .timeline-item::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #f7941e;
}
.punch-timeline .timeline-item:last-child::before {
  display: none;
}
.punch-timeline .timeline-item.punch-in::after {
  background: #28a745;
}
.punch-timeline .timeline-item.punch-out::after {
  background: #dc3545;
}
.punch-timeline .timeline-item .timeline-content {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}
.punch-timeline .timeline-item .timeline-time {
  font-weight: 600;
  color: #f7941e;
  margin-bottom: 0.25rem;
}
.punch-timeline .timeline-item .timeline-details {
  font-size: 0.875rem;
  color: #6c757d;
}

@media (max-width: 991.98px) {
  .punch-details {
    flex-direction: column;
  }
  .img-punch,
  .type-punch {
    float: none;
    margin-right: 0;
    width: 100%;
  }
  .liste-punchs .ligne {
    border-radius: 8px;
  }
  .punch-timeline .timeline-item {
    padding-left: 1.5rem;
  }
}
.qb-extension-section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.qb-extension-section h3 {
  margin-bottom: 1rem;
}
.qb-extension-section h3 i {
  margin-right: 0.5rem;
  color: #2CA01C;
}
.qb-extension-section .qb-extension-status {
  padding: 1rem;
  border-radius: 4px;
  background-color: #f9f9f9;
}
.qb-extension-section .qb-extension-status p {
  margin-bottom: 0.5rem;
}
.qb-extension-section .qb-extension-status p i {
  margin-right: 0.5rem;
}
.qb-extension-section .qb-extension-status.connected {
  border-left: 4px solid #2CA01C;
}
.qb-extension-section .qb-extension-status.not-detected {
  border-left: 4px solid #d9534f;
}
.qb-extension-section .qb-extension-status .qb-extension-info {
  margin: 1rem 0;
  padding: 0.5rem 0;
}
.qb-extension-section .qb-extension-status .qb-extension-info p {
  margin-bottom: 0.25rem;
}
.qb-extension-section .qb-extension-status .qb-extension-connect {
  margin: 1rem 0;
}
.qb-extension-section .qb-extension-status .qb-extension-install-info {
  margin: 1rem 0;
}
.qb-extension-section .qb-extension-status .qb-extension-install-info p {
  margin-bottom: 1rem;
}
.qb-extension-section button {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.qb-extension-section .text-success {
  color: #2CA01C;
}
.qb-extension-section .text-danger {
  color: #d9534f;
}

.task-item {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(204, 204, 204, 0.2196078431);
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  border-radius: 4px;
}
.task-item:hover {
  background-color: #e9e9e9;
}
.task-item.task-recurring {
  background-color: rgba(247, 148, 30, 0.1);
  border-left: 4px solid #f7941e;
}
.task-item.task-recurring:hover {
  background-color: rgba(247, 148, 30, 0.15);
}

.task-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.task-main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.task-address-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #ddd;
  width: 100%;
}

.task-details {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #333;
  align-items: center;
  flex-wrap: wrap;
}
.task-details .task-time {
  font-weight: bold;
}
.task-details .task-customer,
.task-details .task-activity {
  font-style: italic;
}
@media (max-width: 768px) {
  .task-details {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}

.task-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #f7941e;
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
}
.task-type-badge i {
  font-size: 10px;
}
@media (max-width: 768px) {
  .task-type-badge {
    margin-right: 0;
    margin-bottom: 4px;
  }
}

.task-address {
  font-size: 14px;
  color: #555;
  display: block;
  width: 100%;
}

.task-actions {
  margin-left: auto;
}

.task-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}
.task-button:hover {
  background-color: #0056b3;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.fade-in {
  animation: fadeInDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateY(-15px);
}

.slide-in {
  animation: slideInRight 0.3s ease-out forwards;
  opacity: 0;
  transform: translateX(20px);
}

.recurring-options {
  margin-bottom: 1.5rem;
}
.recurring-options .card, .recurring-options .profil-employe, .recurring-options .stats-card, .recurring-options .content-card, .recurring-options .notification-card {
  border: 1px solid rgba(var(--bs-border-color-rgb), 0.5);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.recurring-options .card:hover, .recurring-options .profil-employe:hover, .recurring-options .stats-card:hover, .recurring-options .content-card:hover, .recurring-options .notification-card:hover {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-color: rgba(var(--bs-primary-rgb), 0.3);
}
.recurring-options .card .card-header, .recurring-options .profil-employe .card-header, .recurring-options .stats-card .card-header, .recurring-options .content-card .card-header, .recurring-options .notification-card .card-header {
  background: linear-gradient(135deg, rgba(247, 148, 30, 0.1) 0%, rgba(247, 148, 30, 0.05) 100%);
  border-bottom: 1px solid rgba(247, 148, 30, 0.15);
  padding: 0.75rem 1rem;
}
.recurring-options .card .card-header .card-title, .recurring-options .profil-employe .card-header .card-title, .recurring-options .stats-card .card-header .card-title, .recurring-options .content-card .card-header .card-title, .recurring-options .notification-card .card-header .card-title {
  font-weight: 600;
  /* font-size: 0.95rem; */
  color: #f7941e;
  margin: 0;
}
.recurring-options .card .card-header .card-title i, .recurring-options .profil-employe .card-header .card-title i, .recurring-options .stats-card .card-header .card-title i, .recurring-options .content-card .card-header .card-title i, .recurring-options .notification-card .card-header .card-title i {
  opacity: 0.8;
}
.recurring-options .card .card-body, .recurring-options .profil-employe .card-body, .recurring-options .stats-card .card-body, .recurring-options .content-card .card-body, .recurring-options .notification-card .card-body {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
}

.recurring-options:has(.fa-calendar-week) .card, .recurring-options:has(.fa-calendar-week) .profil-employe, .recurring-options:has(.fa-calendar-week) .stats-card, .recurring-options:has(.fa-calendar-week) .content-card, .recurring-options:has(.fa-calendar-week) .notification-card {
  border-left: 4px solid #f7941e;
}
.recurring-options:has(.fa-calendar-week) .card .card-header, .recurring-options:has(.fa-calendar-week) .profil-employe .card-header, .recurring-options:has(.fa-calendar-week) .stats-card .card-header, .recurring-options:has(.fa-calendar-week) .content-card .card-header, .recurring-options:has(.fa-calendar-week) .notification-card .card-header {
  background: linear-gradient(135deg, rgba(247, 148, 30, 0.1) 0%, rgba(247, 148, 30, 0.05) 100%);
}
.recurring-options:has(.fa-calendar-week) .card .card-title, .recurring-options:has(.fa-calendar-week) .profil-employe .card-title, .recurring-options:has(.fa-calendar-week) .stats-card .card-title, .recurring-options:has(.fa-calendar-week) .content-card .card-title, .recurring-options:has(.fa-calendar-week) .notification-card .card-title {
  color: #f7941e !important;
}
.recurring-options:has(.fa-calendar-alt) .card, .recurring-options:has(.fa-calendar-alt) .profil-employe, .recurring-options:has(.fa-calendar-alt) .stats-card, .recurring-options:has(.fa-calendar-alt) .content-card, .recurring-options:has(.fa-calendar-alt) .notification-card {
  border-left: 4px solid #ef4136;
}
.recurring-options:has(.fa-calendar-alt) .card .card-header, .recurring-options:has(.fa-calendar-alt) .profil-employe .card-header, .recurring-options:has(.fa-calendar-alt) .stats-card .card-header, .recurring-options:has(.fa-calendar-alt) .content-card .card-header, .recurring-options:has(.fa-calendar-alt) .notification-card .card-header {
  background: linear-gradient(135deg, rgba(239, 65, 54, 0.1) 0%, rgba(239, 65, 54, 0.05) 100%);
}
.recurring-options:has(.fa-calendar-alt) .card .card-title, .recurring-options:has(.fa-calendar-alt) .profil-employe .card-title, .recurring-options:has(.fa-calendar-alt) .stats-card .card-title, .recurring-options:has(.fa-calendar-alt) .content-card .card-title, .recurring-options:has(.fa-calendar-alt) .notification-card .card-title {
  color: #ef4136 !important;
}
.recurring-options:has(.fa-calendar) .card, .recurring-options:has(.fa-calendar) .profil-employe, .recurring-options:has(.fa-calendar) .stats-card, .recurring-options:has(.fa-calendar) .content-card, .recurring-options:has(.fa-calendar) .notification-card {
  border-left: 4px solid #8a2be2; /* BlueViolet - bordure violette */
}
.recurring-options:has(.fa-calendar) .card .card-header, .recurring-options:has(.fa-calendar) .profil-employe .card-header, .recurring-options:has(.fa-calendar) .stats-card .card-header, .recurring-options:has(.fa-calendar) .content-card .card-header, .recurring-options:has(.fa-calendar) .notification-card .card-header {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0.05) 100%);
}
.recurring-options:has(.fa-calendar) .card .card-title, .recurring-options:has(.fa-calendar) .profil-employe .card-title, .recurring-options:has(.fa-calendar) .stats-card .card-title, .recurring-options:has(.fa-calendar) .content-card .card-title, .recurring-options:has(.fa-calendar) .notification-card .card-title {
  color: #8a2be2 !important; /* Violet pour le titre */
}

.weekdays-selector .form-check {
  margin-bottom: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.weekdays-selector .form-check:hover {
  transform: translateY(-1px);
}
.weekdays-selector .form-check .form-check-input {
  width: 1.1em;
  height: 1.1em;
  border-width: 2px;
  transition: all 0.2s ease-in-out;
}
.weekdays-selector .form-check .form-check-input:checked {
  background-color: #f7941e;
  border-color: #f7941e;
  transform: scale(1.05);
  box-shadow: 0 0 0 0.2rem rgba(247, 148, 30, 0.25);
}
.weekdays-selector .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 148, 30, 0.25);
}
.weekdays-selector .form-check .form-check-label {
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
  color: var(--bs-body-color);
  background: rgba(var(--bs-light-rgb), 0.5);
  border: 1px solid transparent;
}
.weekdays-selector .form-check .form-check-label:hover {
  background: rgba(247, 148, 30, 0.1);
  color: #f7941e;
  border-color: rgba(247, 148, 30, 0.2);
}
.weekdays-selector .form-check .form-check-input:checked + .form-check-label {
  background: linear-gradient(135deg, rgba(247, 148, 30, 0.15) 0%, rgba(247, 148, 30, 0.1) 100%);
  color: #f7941e;
  border-color: rgba(247, 148, 30, 0.3);
  font-weight: 600;
  box-shadow: 0 0.125rem 0.25rem rgba(247, 148, 30, 0.15);
}

.form-select,
.form-control {
  border-radius: 0.5rem;
  border-width: 1.5px;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}
.form-select:focus,
.form-control:focus {
  border-color: #f7941e;
  box-shadow: 0 0 0 0.2rem rgba(247, 148, 30, 0.15);
  transform: translateY(-1px);
}
.form-select:hover:not(:focus),
.form-control:hover:not(:focus) {
  border-color: rgba(247, 148, 30, 0.5);
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.08) !important;
}
.shadow-sm:hover {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.12) !important;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bs-gray-700);
  font-size: 0.9rem;
}
.form-label i {
  opacity: 0.7;
  margin-right: 0.25rem;
  font-size: 0.85em;
}
.form-label small {
  font-weight: 400;
  opacity: 0.8;
}

.form-text {
  font-size: 0.8rem;
  color: var(--bs-gray-600);
  margin-top: 0.375rem;
  font-style: italic;
}

.input-group .input-group-text {
  background: linear-gradient(135deg, var(--bs-light) 0%, rgba(var(--bs-light-rgb), 0.8) 100%);
  border-color: var(--bs-border-color);
  color: var(--bs-gray-600);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease-in-out;
}
.input-group:focus-within .input-group-text {
  border-color: #f7941e;
  background: rgba(247, 148, 30, 0.1);
  color: #f7941e;
}

#frequency {
  /* font-weight: 600; */
  font-size: 1rem;
  padding: 0.5rem 1rem;
  /* background: linear-gradient(
    135deg,
    #fff 0%,
    rgba(var(--bs-light-rgb), 0.5) 100%
  ); */
}
#frequency:focus {
  animation: pulse 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .weekdays-selector {
    gap: 0.375rem !important;
  }
  .weekdays-selector .form-check {
    flex: 1 1 calc(50% - 0.1875rem);
    min-width: calc(50% - 0.1875rem);
    margin-bottom: 0.375rem;
  }
  .weekdays-selector .form-check .form-check-label {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    text-align: center;
  }
  .recurring-options .card .card-body, .recurring-options .profil-employe .card-body, .recurring-options .stats-card .card-body, .recurring-options .content-card .card-body, .recurring-options .notification-card .card-body {
    padding: 1rem !important;
  }
  .recurring-options .card .card-header, .recurring-options .profil-employe .card-header, .recurring-options .stats-card .card-header, .recurring-options .content-card .card-header, .recurring-options .notification-card .card-header {
    padding: 0.5rem 1rem;
  }
  .form-label {
    font-size: 0.85rem;
  }
}
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  border-radius: 0.5rem;
}
.loading-overlay .spinner-border {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--bs-primary);
}

.recurring-task-modal {
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  overflow: hidden;
}
.recurring-task-modal .modal-header {
  background: linear-gradient(135deg, #ef4136 0%, #f7941e 100%);
  color: white;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1.5rem 2rem;
  border-bottom: none;
  position: relative;
}
.recurring-task-modal .modal-header .modal-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.recurring-task-modal .modal-header .modal-title::before {
  content: "\f073";
  font-family: "FontAwesome";
  font-size: 1.1rem;
  opacity: 0.9;
}
.recurring-task-modal .modal-header .close {
  color: white;
  opacity: 0.9;
  font-size: 1.5rem;
  font-weight: normal;
  text-shadow: none;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.recurring-task-modal .modal-header .close:hover {
  opacity: 1;
  color: white;
  transform: translateY(-50%) scale(1.1);
}
.recurring-task-modal .modal-header .close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}
.recurring-task-modal .modal-body {
  padding: 2rem;
  max-height: 75vh;
  overflow-y: auto;
  background: #fafafa;
}
.recurring-task-modal .modal-body::-webkit-scrollbar {
  width: 8px;
}
.recurring-task-modal .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.recurring-task-modal .modal-body::-webkit-scrollbar-thumb {
  background: #f7941e;
  border-radius: 4px;
}
.recurring-task-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #da7a08;
}
.recurring-task-modal .modal-body .alert {
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid;
}
.recurring-task-modal .modal-body .alert.alert-info {
  background: rgba(23, 162, 184, 0.1);
  color: #0c7489;
  border-left-color: #17a2b8;
}
.recurring-task-modal .modal-body .alert.alert-info .fa {
  margin-right: 0.5rem;
  font-size: 1.1rem;
  color: #17a2b8;
}
.recurring-task-modal .modal-body .task-detail-section {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.recurring-task-modal .modal-body .task-detail-section .section-title {
  color: #f7941e;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(247, 148, 30, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.recurring-task-modal .modal-body .task-detail-section .section-title::before {
  content: "\f0ae";
  font-family: "FontAwesome";
  font-size: 1rem;
  opacity: 0.8;
}
.recurring-task-modal .modal-body .task-detail-section .task-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}
.recurring-task-modal .modal-body .task-detail-section .task-detail-row:not(:last-child) {
  border-bottom: 1px solid #f8f9fa;
}
.recurring-task-modal .modal-body .task-detail-section .task-detail-row .task-detail-label {
  color: #6c757d;
  font-weight: 500;
  flex: 0 0 40%;
  font-size: 0.9rem;
}
.recurring-task-modal .modal-body .task-detail-section .task-detail-row .task-detail-value {
  color: #495057;
  font-weight: 500;
  text-align: right;
}
.recurring-task-modal .modal-body .task-detail-section .task-detail-row .task-detail-value strong {
  color: #ef4136;
  font-weight: 600;
}
.recurring-task-modal .modal-body .row.mb-2, .recurring-task-modal .modal-body .row.margB {
  margin-bottom: 1.5rem !important;
}
.recurring-task-modal .modal-body label {
  color: #495057;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.recurring-task-modal .modal-body .form-control,
.recurring-task-modal .modal-body .form-select {
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background: white;
  transition: all 0.2s ease;
}
.recurring-task-modal .modal-body .form-control:focus,
.recurring-task-modal .modal-body .form-select:focus {
  border-color: #f7941e;
  box-shadow: 0 0 0 0.2rem rgba(247, 148, 30, 0.15);
  outline: none;
  transform: translateY(-1px);
}
.recurring-task-modal .modal-body .form-control:hover:not(:focus),
.recurring-task-modal .modal-body .form-select:hover:not(:focus) {
  border-color: rgba(247, 148, 30, 0.5);
}
.recurring-task-modal .modal-body .input-group .input-group-addon {
  background: linear-gradient(135deg, rgba(247, 148, 30, 0.1), rgba(247, 148, 30, 0.05));
  border: 2px solid #e9ecef;
  border-right: none;
  color: #f7941e;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
  font-weight: 500;
}
.recurring-task-modal .modal-body .input-group .input-group-addon .fa {
  font-size: 1rem;
}
.recurring-task-modal .modal-body .input-group .form-control {
  border-left: none;
  border-radius: 0 0.5rem 0.5rem 0;
}
.recurring-task-modal .modal-body .input-group .form-control:focus {
  border-color: #f7941e;
}
.recurring-task-modal .modal-body .input-group .form-control:focus + .input-group-addon {
  border-color: #f7941e;
}
.recurring-task-modal .modal-body .weekdays-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.recurring-task-modal .modal-body .weekdays-selector .checkbox-inline {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.recurring-task-modal .modal-body .weekdays-selector .checkbox-inline:hover {
  border-color: #f7941e;
  background: rgba(247, 148, 30, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.recurring-task-modal .modal-body .weekdays-selector .checkbox-inline input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #dee2e6;
  border-radius: 3px;
  background: white;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: all 0.2s ease;
}
.recurring-task-modal .modal-body .weekdays-selector .checkbox-inline input[type=checkbox]:checked {
  background: #f7941e;
  border-color: #f7941e;
}
.recurring-task-modal .modal-body .weekdays-selector .checkbox-inline input[type=checkbox]:checked::after {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
}
.recurring-task-modal .modal-body .weekdays-selector .checkbox-inline input[type=checkbox]:hover {
  border-color: #f7941e;
}
.recurring-task-modal .modal-body .weekdays-selector .checkbox-inline:has(input:checked) {
  background: rgba(247, 148, 30, 0.1);
  border-color: #f7941e;
  color: #f7941e;
  font-weight: 600;
}
@media (max-width: 768px) {
  .recurring-task-modal .modal-body .weekdays-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .recurring-task-modal .modal-body .weekdays-selector .checkbox-inline {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}
.recurring-task-modal .modal-body input[type=number] {
  -moz-appearance: textfield;
}
.recurring-task-modal .modal-body input[type=number]::-webkit-outer-spin-button, .recurring-task-modal .modal-body input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.recurring-task-modal .modal-body textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.recurring-task-modal .modal-footer {
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}
.recurring-task-modal .modal-footer .btn {
  min-width: 120px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
}
.recurring-task-modal .modal-footer .btn .fa {
  margin-right: 0.5rem;
}
.recurring-task-modal .modal-footer .btn.btn-success {
  background: linear-gradient(135deg, #f7941e 0%, #ef4136 100%);
  border: none;
}
.recurring-task-modal .modal-footer .btn.btn-success:hover {
  background: linear-gradient(135deg, #f38809 0%, #ed2b1e 100%);
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.recurring-task-modal .modal-footer .btn.btn-warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
  border: none;
  color: white;
}
.recurring-task-modal .modal-footer .btn.btn-warning:hover {
  background: linear-gradient(135deg, #edb100 0%, #f57102 100%);
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.recurring-task-modal .modal-footer .btn.btn-primary {
  background: linear-gradient(135deg, #ef4136 0%, #f7941e 100%);
  border: none;
}
.recurring-task-modal .modal-footer .btn.btn-primary:hover {
  background: linear-gradient(135deg, #ed2b1e 0%, #f38809 100%);
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.recurring-task-modal .modal-footer .btn.btn-default {
  background: #6c757d;
  color: white;
  border: none;
}
.recurring-task-modal .modal-footer .btn.btn-default:hover {
  background: #545b62;
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  .recurring-task-modal .modal-footer {
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
  .recurring-task-modal .modal-footer .btn {
    width: 100%;
    min-width: auto;
  }
}
.recurring-task-modal.loading .modal-body {
  position: relative;
}
.recurring-task-modal.loading .modal-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(2px);
}
.recurring-task-modal.loading .modal-body::before {
  content: "\f110";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #f7941e;
  z-index: 11;
  animation: fa-spin 1s infinite linear;
}

.modal.fade .recurring-task-modal .modal-dialog {
  transform: translate(0, -50px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .recurring-task-modal .modal-dialog {
  transform: translate(0, 0);
}

.recurring-task-modal .modal-body .row:nth-child(1) {
  animation: slideInRight 0.3s ease-out 0.1s both;
}
.recurring-task-modal .modal-body .row:nth-child(2) {
  animation: slideInRight 0.3s ease-out 0.2s both;
}
.recurring-task-modal .modal-body .row:nth-child(3) {
  animation: slideInRight 0.3s ease-out 0.3s both;
}
.recurring-task-modal .modal-body .row:nth-child(4) {
  animation: slideInRight 0.3s ease-out 0.4s both;
}

.btn {
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(0);
}
.btn.btn-success {
  background: linear-gradient(135deg, #f7941e 0%, #ef4136 100%);
  border: none;
}
.btn.btn-success:hover {
  background: linear-gradient(135deg, #ef4136 0%, #e01e12 100%);
}

.recurring-options:nth-child(1) {
  animation-delay: 0.1s;
}

.recurring-options:nth-child(2) {
  animation-delay: 0.2s;
}

.recurring-options:nth-child(3) {
  animation-delay: 0.3s;
}

.fw-semibold {
  font-weight: 600;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #f7941e 0%, #ef4136 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outer {
  display: table;
  position: absolute;
  height: 100vh;
  width: 100vw;
  background-image: url("/img/bg-degrade.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background: linear-gradient(45deg, #ef4136 0%, #f7941e 100%);
}
.outer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(239, 65, 54, 0.1);
  z-index: 1;
  pointer-events: none;
}

.middle {
  display: table-cell;
  vertical-align: middle;
  z-index: 2;
  position: relative;
}

.connexion, .email-verification-container {
  margin-left: auto;
  margin-right: auto;
  width: 290px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: slideInFromTop 0.6s ease-out;
}
.connexion img, .email-verification-container img {
  width: 250px;
  filter: brightness(0) invert(1);
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}
.connexion img:hover, .email-verification-container img:hover {
  transform: scale(1.02);
}
.connexion form, .email-verification-container form {
  color: white;
}
.connexion form .form-group, .email-verification-container form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.connexion form .form-group label, .email-verification-container form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}
.connexion input[type=email], .email-verification-container input[type=email], .connexion input[type=password], .email-verification-container input[type=password], .connexion input[type=text], .email-verification-container input[type=text] {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  width: 100%;
  padding: 12px 1.5rem;
  font-family: "Rubik", "Roboto", "Arial", sans-serif;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.connexion input[type=email]::placeholder, .email-verification-container input[type=email]::placeholder, .connexion input[type=password]::placeholder, .email-verification-container input[type=password]::placeholder, .connexion input[type=text]::placeholder, .email-verification-container input[type=text]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.connexion input[type=email]:focus, .email-verification-container input[type=email]:focus, .connexion input[type=password]:focus, .email-verification-container input[type=password]:focus, .connexion input[type=text]:focus, .email-verification-container input[type=text]:focus {
  outline: none;
  background-color: white;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.connexion input[type=email]:hover, .email-verification-container input[type=email]:hover, .connexion input[type=password]:hover, .email-verification-container input[type=password]:hover, .connexion input[type=text]:hover, .email-verification-container input[type=text]:hover {
  background-color: white;
  transform: translateY(-1px);
}
.connexion .btn-connexion, .email-verification-container .btn-connexion {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-family: "Rubik", "Roboto", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.connexion .btn-connexion:hover, .email-verification-container .btn-connexion:hover {
  background-color: white;
  color: #ef4136;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.connexion .btn-connexion:active, .email-verification-container .btn-connexion:active {
  transform: translateY(-1px);
}
.connexion .btn-connexion:focus, .email-verification-container .btn-connexion:focus {
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

.email-verification-container {
  width: 400px;
  text-align: center;
}
.email-verification-container .verification-icon {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}
.email-verification-container .verification-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}
.email-verification-container .verification-message {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.email-verification-container .verification-message a {
  color: white;
  text-decoration: underline;
}
.email-verification-container .verification-message a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.email-verification-container .verification-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.email-verification-container .verification-actions .btn {
  min-width: 120px;
  padding: 0.75rem 1.5rem;
}

.email-verification-required .verification-icon::before {
  content: "✉️";
}
.email-verification-required .verification-title {
  color: #ffc107;
}

.email-verification-success .verification-icon::before {
  content: "✅";
}
.email-verification-success .verification-title {
  color: #28a745;
}

.email-verification-error .verification-icon::before {
  content: "❌";
}
.email-verification-error .verification-title {
  color: #dc3545;
}

.login-form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.login-form-group.floating-label input {
  padding-top: 1.5rem;
}
.login-form-group.floating-label input::placeholder {
  opacity: 0;
}
.login-form-group.floating-label input:focus + label, .login-form-group.floating-label input:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem) scale(0.8);
  color: white;
}
.login-form-group.floating-label label {
  position: absolute;
  left: 1.5rem;
  top: 12px;
  transition: all 0.2s ease;
  pointer-events: none;
  transform-origin: left top;
  color: rgba(255, 255, 255, 0.7);
}

.remember-me {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.remember-me input[type=checkbox] {
  margin-right: 0.5rem;
  width: auto;
}
.remember-me input[type=checkbox]:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.remember-me label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  margin: 0;
}

.forgot-password {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: color 0.2s ease;
}
.forgot-password:hover {
  color: white;
  text-decoration: underline;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.login-loading .btn-connexion {
  position: relative;
  pointer-events: none;
}
.login-loading .btn-connexion::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.login-loading .btn-connexion span {
  opacity: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.login-error input[type=email].error, .login-error input[type=password].error, .login-error input[type=text].error {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
}
.login-error input[type=email].error:focus, .login-error input[type=password].error:focus, .login-error input[type=text].error:focus {
  border-color: #dc3545;
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.2), 0 0 0 3px rgba(220, 53, 69, 0.3);
}

.error-message {
  background: rgba(220, 53, 69, 0.9);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  animation: fadeInUp 0.3s ease;
}
.error-message .error-icon {
  margin-right: 0.5rem;
}

.success-message {
  background: rgba(40, 167, 69, 0.9);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  animation: fadeInUp 0.3s ease;
}
.success-message .success-icon {
  margin-right: 0.5rem;
}

.login-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.app-version {
  z-index: 1001 !important;
}

@media (max-width: 576px) {
  .connexion, .email-verification-container {
    width: 85%;
    min-width: 280px;
    padding: 1.5rem;
    margin: 1rem auto;
  }
  .connexion img, .email-verification-container img {
    width: 200px;
  }
  .email-verification-container {
    width: 85%;
    min-width: 300px;
  }
  .email-verification-container .verification-actions {
    flex-direction: column;
  }
  .email-verification-container .verification-actions .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .outer {
    padding: 1rem;
  }
  .connexion, .email-verification-container {
    width: 100%;
    margin: 0;
    border-radius: 12px;
  }
}
.active-punch-info {
  background-color: #17a2b8;
  color: #ffffff;
  padding: 10px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}
.active-punch-info h4 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .active-punch-info h4 {
    font-size: 0.875rem;
  }
}
.active-punch-info p {
  margin-bottom: 5px;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media (max-width: 575.98px) {
  .active-punch-info p {
    font-size: 0.75rem;
  }
}
.active-punch-info .fa-info-circle {
  margin-right: 5px;
}

.section {
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 576px) {
  .section {
    padding: 30px;
  }
}
@media (max-width: 575.98px) {
  .section {
    margin: 10px;
  }
}
.section.layout-flex {
  display: flex;
  gap: 2rem;
}
.section.layout-flex .col-gauche {
  flex: 2;
  min-width: 0;
}
.section.layout-flex .col-droite {
  flex: 0 0 340px;
}
@media (max-width: 991.98px) {
  .section.layout-flex {
    flex-direction: column;
  }
  .section.layout-flex .col-droite {
    flex: none;
    width: 100%;
  }
}
.section .col-droite {
  width: 340px;
  position: relative;
  right: 0;
}
@media (max-width: 991.98px) {
  .section .col-droite {
    width: 100%;
    position: static;
  }
}
.section .col-gauche {
  width: 760px;
  float: left;
}
@media (max-width: 1200px) {
  .section .col-gauche {
    width: 550px;
  }
}
@media (max-width: 992px) {
  .section .col-gauche {
    width: 370px;
  }
}
@media (max-width: 991.98px) {
  .section .col-gauche {
    width: 100%;
    float: none;
  }
}

@media (max-width: 767.98px) {
  .section-no-padding-top {
    padding-top: 1px !important;
  }
}

.conf-col-r {
  width: 824px;
  float: left;
}
@media (max-width: 1200px) {
  .conf-col-r {
    width: 100%;
    float: none;
  }
}

.app-version {
  text-align: right;
  position: fixed;
  bottom: 2rem;
  right: 0.5rem;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  padding-bottom: env(safe-area-inset-bottom);
  padding-right: calc(env(safe-area-inset-right) + 15px);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.app-version:hover {
  opacity: 1;
}

.wo_print_link {
  font-size: 14px;
  text-decoration: underline;
  color: #6a1db7;
  cursor: pointer;
  transition: color 0.15s ease-in-out ease;
}
.wo_print_link:hover {
  color: #441375;
}

.wo_number_header {
  font-size: 1.125rem;
  font-weight: 600;
  color: #6a1db7;
}

.toggle-account-activation .toggle-deactivate {
  position: relative;
  transition: all 0.3s ease;
}
.toggle-account-activation .toggle-deactivate:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform: rotate(-45deg);
  top: 50%;
  left: 0;
  transition: all 0.2s ease;
}
.toggle-account-activation .toggle-activate {
  position: relative;
}
.toggle-account-activation .toggle-activate::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform: rotate(-45deg);
  top: 50%;
  left: 0;
  transition: all 0.2s ease;
}
.toggle-account-activation .toggle-activate:hover::after {
  content: none;
}

@media print {
  body,
  html {
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    font-size: 12pt;
    font-family: "Times New Roman", serif;
  }
  .no-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  .section {
    padding: 0;
    margin: 0;
  }
  .section .col-gauche,
  .section .col-droite {
    width: 100%;
    float: none;
  }
  * {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}