@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
}

main {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
main section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

button:focus,
input:focus,
a:focus {
  outline: none;
}

.hidden {
  display: none !important;
}

.ui,
icon {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  user-select: none;
  color: #ffffff;
  vertical-align: middle;
}
.ui.bleu,
icon.bleu {
  color: #0088ce !important;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}
p.small {
  font-size: 0.875rem;
}
p.large {
  font-size: 1.25rem;
}
p.error {
  color: #FF0000;
}
p.info {
  color: #0088ce;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
}
h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter,
h5::first-letter,
h6::first-letter {
  text-transform: uppercase;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.8rem;
}
h2::first-letter {
  color: #FF0000;
  text-transform: uppercase;
}

h3 {
  font-size: 1.5rem;
}
h3.no-after::after {
  display: none;
}
h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2ch;
  height: 2px;
  background: #FF0000;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: #0088ce;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(0, 85.4951456311, 129.5);
}
a.btn-link {
  color: #FF0000;
}
a.btn-link:hover {
  color: rgb(178.5, 0, 0);
}

button,
.btn {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 10px 18px;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #FF0000;
  color: #ffffff;
  border: none;
}
button:focus,
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 136, 206, 0.25);
}
button:hover,
.btn:hover {
  background-color: #cc0000;
}
button:active,
.btn:active {
  background-color: rgb(178.5, 0, 0);
}
button:disabled,
.btn:disabled {
  background-color: #dddddd !important;
  cursor: not-allowed;
}
button.submit,
.btn.submit {
  background: #000000;
  color: #ffffff;
  width: 100%;
  position: sticky;
  bottom: 20px;
}

form {
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-checkbox {
  display: flex;
  gap: 1ch;
  align-items: center;
  padding: 0.75rem;
  border-radius: 5px;
  background: white;
  width: max-content;
  width: 100%;
  flex-direction: row-reverse;
  transition: 0.3s ease;
  cursor: pointer;
  justify-content: flex-end;
  border: 1px solid #dddddd;
}
.form-checkbox label {
  cursor: pointer;
  font-weight: 500;
}
.form-checkbox::after {
  content: "check_box_outline_blank";
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  user-select: none;
  vertical-align: middle;
  font-size: 1.5em;
  transition: 0.3s ease;
}
.form-checkbox[data-active=true] {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.form-checkbox[data-active=true] icon {
  color: #0088ce;
}
.form-checkbox[data-active=true]::after {
  content: "check_box";
}

label {
  display: block;
  font-weight: 600;
}
label .little {
  font-size: 0.8em;
  color: #666666;
  font-weight: 400;
}

[contenteditable=true] {
  -webkit-text-size-adjust: none;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 100%;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #FF0000;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15);
}
input:disabled,
select:disabled,
textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
input.error,
select.error,
textarea.error {
  border-color: #FF0000;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #666666;
  opacity: 0.6;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

table input,
table select {
  min-width: max-content;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font: inherit;
  padding: 0.75rem;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6'%3E%3Cpath fill='%23666' d='M6 6L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  width: 100%;
}
select::-ms-expand {
  display: none;
}

input[type=checkbox],
input[type=radio] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}

.form-error {
  color: #FF0000;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.table-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.table-container .table {
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-height: 70vh;
}
.table-container .table:active {
  user-select: none;
  cursor: grabbing;
}
@media print {
  .table-container .table {
    overflow: inherit;
    max-height: none;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
table th,
table td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dddddd;
  text-align: center;
  align-content: center;
}
table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
  background-color: #f5f5f5;
  font-weight: 600;
}
table tbody tr:hover {
  background-color: rgba(245, 245, 245, 0.5);
}

nav {
  z-index: 2;
  flex: 1;
  position: sticky;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  align-items: flex-end;
}
nav .container {
  pointer-events: auto;
  border-radius: 28px;
  padding: 8px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  display: flex;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
nav .container:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.12);
}
nav p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.6rem;
}
nav p::before {
  content: attr(data-title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
  z-index: 3;
  font-family: "Montserrat", sans-serif;
}
nav p:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
nav p:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
nav p.active {
  background: #FF0000;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
  transform: translateY(-5px);
}
nav p.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffffff;
  animation: navIndicatorAppear 0.4s ease-out;
}
nav p icon {
  font-size: 1em;
  color: inherit;
}

@keyframes navIndicatorAppear {
  from {
    transform: translateY(5px) scale(0);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.formulaire {
  max-width: 1200px;
}
.formulaire form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex: 1;
  align-content: space-between;
}
.formulaire form .box {
  flex: 1 300px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #666666;
}
.formulaire form .box .groups {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.formulaire form .box .groups .group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 10px;
}

.file-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.file-preview .file-box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.file-preview .file-box img {
  max-width: 150px;
  max-height: 150px;
  border-radius: 10px;
}

#alert-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 500px) {
  #alert-container {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
#alert-container .notif {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  animation: slideIn 0.3s ease-out;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
#alert-container .notif::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 0%;
  background-color: currentColor;
  animation: growBar 3s linear forwards;
}
#alert-container .notif.success {
  color: #34B233;
  background-color: rgba(52, 178, 51, 0.2);
}
#alert-container .notif.success .icon {
  background: #34B233;
}
#alert-container .notif.error {
  color: #FF0000;
  background-color: rgba(255, 0, 0, 0.2);
}
#alert-container .notif.error .icon {
  background: #FF0000;
}
#alert-container .notif.info {
  color: #0088ce;
  background-color: rgba(0, 136, 206, 0.2);
}
#alert-container .notif.info .icon {
  background: #0088ce;
}
#alert-container .notif.hide {
  animation: slideBack 0.31s ease;
}
#alert-container .notif .icon {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#alert-container .notif .icon icon {
  font-size: 2em;
}
#alert-container .notif .message {
  flex: 1;
}
#alert-container .notif .message .title {
  font-weight: bold;
  margin-bottom: 4px;
}
#alert-container .notif .message .text {
  font-size: 0.95rem;
  color: #333;
}
#alert-container .progress {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  animation: slideIn 0.3s ease-out;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  background-color: rgba(254, 209, 0, 0.2);
}
#alert-container .progress::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background-color: #FED100;
}
#alert-container .progress p {
  display: flex;
  gap: 1ch;
}
#alert-container .progress p icon {
  background: #FED100;
  width: 50px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2em;
}
#alert-container .progress-bar {
  height: 20px;
  width: 0%;
  background: #FED100;
  transition: width 0.2s linear;
  border-radius: 20px;
}
#alert-container .progress-label {
  font-size: 12px;
  white-space: nowrap;
  user-select: none;
}

@keyframes growBar {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideBack {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.info-pratique {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 24px;
  width: 100%;
  color: #000000;
  background: linear-gradient(135deg, rgba(0, 136, 206, 0.1) 0%, rgba(0, 136, 206, 0.05) 100%);
  border: 1px solid rgba(0, 136, 206, 0.2);
  box-shadow: 0 4px 12px rgba(0, 136, 206, 0.05);
}
.info-pratique .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0088ce;
  color: #ffffff;
  flex-shrink: 0;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(0, 136, 206, 0.2);
}
.info-pratique .icon icon {
  font-size: 1.8rem;
  color: #ffffff;
}
.info-pratique .info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-pratique .info-content .info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.info-pratique .info-content .info-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #000000;
}
.info-pratique .info-content .info-header .today-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #666666;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #dddddd;
}
.info-pratique .info-content .info-header .today-badge icon {
  font-size: 1rem;
  color: #0088ce;
}
.info-pratique .info-content .info-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
}
.info-pratique .info-content .info-body p.sub-info {
  font-size: 0.85rem;
  font-style: italic;
  color: #666666;
  margin-top: 4px;
}
.info-pratique.travaux {
  background: linear-gradient(135deg, rgba(254, 209, 0, 0.15) 0%, rgba(254, 209, 0, 0.08) 100%);
  border-color: rgba(254, 209, 0, 0.3);
  box-shadow: 0 4px 12px rgba(254, 209, 0, 0.1);
}
.info-pratique.travaux .icon {
  background: #FED100;
  box-shadow: 0 4px 10px rgba(254, 209, 0, 0.2);
  color: #000000;
}
.info-pratique.travaux .icon icon {
  color: #000000;
}
.info-pratique.travaux .today-badge icon {
  color: rgb(152, 125.0708661417, 0);
}
.info-pratique.erreur {
  background-color: rgba(255, 0, 0, 0.2);
}
.info-pratique.erreur .icon {
  background: #FF0000;
}
.info-pratique.erreur button {
  background: #FF0000;
}
.info-pratique.good {
  background-color: rgba(52, 178, 51, 0.2);
}
.info-pratique.good .icon {
  background: #34B233;
}
.info-pratique.good button {
  background: #34B233;
}
.info-pratique button {
  writing-mode: vertical-rl;
}
.info-pratique p {
  flex: 1;
}
.info-pratique .message {
  display: flex;
  flex-direction: column;
  gap: 1ch;
}

.div_popup_body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  right: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  touch-action: none;
  overscroll-behavior: contain;
}
.div_popup_body .container {
  max-width: 1200px;
  border-radius: 20px;
  padding: 20px;
  background: #f5f5f5;
  max-height: 90%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.div_popup_body .container-action {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.div_popup_body .container-action button {
  flex: 1 max-content;
  background: #dddddd;
  color: #000000;
}
.div_popup_body .container-action button.refus {
  color: #ffffff;
  background: #000000;
  text-transform: uppercase;
}
.div_popup_body.popup_imgs {
  flex-direction: column;
}
.div_popup_body.popup_imgs .grand_img {
  max-width: 90%;
  max-height: 80%;
  user-select: none;
  touch-action: none;
  transition: transform 0.3s ease;
}
.div_popup_body.popup_imgs .popup_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-radius: 28px;
  background: #f5f5f5;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.div_popup_body.popup_imgs .popup_actions button {
  flex: 1 max-content;
  max-width: 100%;
  cursor: pointer;
}

.brouillon .close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0088ce;
}
.brouillon .delete_brouillon {
  background: #000000;
}

.itineraire .app {
  width: 100%;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #666666;
  cursor: pointer;
}
.itineraire button {
  text-transform: uppercase;
}

.horaire_pointage .close {
  position: sticky;
  top: 0;
  align-self: flex-end;
  z-index: 1;
  background: #0088ce;
}
.horaire_pointage .container {
  width: 100%;
}
.horaire_pointage .container .container_inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.horaire_pointage .container .container_inputs .heure {
  flex: 1 0 300px;
  display: flex;
  gap: 5px;
  padding: 10px;
}
.horaire_pointage .container .container_inputs .heure .form-group {
  flex: 1 0;
}
.horaire_pointage .add {
  background: #0088ce;
}
.horaire_pointage .submit {
  position: relative;
  bottom: inherit;
}

.selectHours .container .box {
  display: flex;
  gap: 20px;
}
.selectHours .container .box .type {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-height: 400px;
  overflow-y: auto;
  flex: 1;
  padding: 5px;
}
.selectHours .container .box .type p {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  align-content: center;
}
.selectHours .container .box .type p.time_choose {
  background: #FF0000;
  color: #ffffff;
}

.select_multiple_active .container {
  width: 100%;
  max-width: 600px;
}
.select_multiple_active .container .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.select_multiple_active .container .content h2 {
  text-align: center;
  margin-bottom: 10px;
}
.select_multiple_active .container .content .grid_select {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 50vh;
  overflow-y: auto;
  padding: 5px;
}
.select_multiple_active .container .content .grid_select button {
  flex: 1 0 140px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #dddddd;
  padding: 15px 10px;
  font-size: 0.9rem;
}
.select_multiple_active .container .content .grid_select button.active {
  background: #FF0000;
  color: #ffffff;
  border-color: #FF0000;
}
.select_multiple_active .container .content .submit {
  margin-top: 10px;
}

.choix_chantier {
  align-items: flex-end;
}
.choix_chantier .container {
  max-width: 500px;
  width: 100%;
  overflow: inherit;
  padding-top: 30px;
  background: white;
}
.choix_chantier .container .qui_popup {
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 1;
}
.choix_chantier .container .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}
.choix_chantier .container .content .sites {
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: auto;
}
.choix_chantier .container .content .sites .site {
  padding: 10px 20px;
  border-radius: 20px;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.choix_chantier .container .content .sites .site[data-active=true] {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
  font-weight: 600;
}
.choix_chantier .container .content .sites .site[data-active=true] icon {
  color: #0088ce;
}
.choix_chantier .container .content .sites .site[data-active=true]::after {
  content: "check";
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  user-select: none;
  vertical-align: middle;
  font-size: 1.5em;
}
.choix_chantier .container .content button.tous {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.choix_chantier .container .content button.tous icon {
  color: #0088ce;
}

.liste_utilisateurs_selection .container {
  overflow: hidden;
}
.liste_utilisateurs_selection .container .liste_utilisateurs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: scroll;
}
.liste_utilisateurs_selection .container .liste_utilisateurs p {
  border: 1px solid #666666;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}
.liste_utilisateurs_selection .container .liste_utilisateurs p.active {
  color: #ffffff;
  background: #FF0000;
  border-color: #FF0000;
}
.liste_utilisateurs_selection .container .select-all {
  background: #0088ce;
}

.clavierNumerique {
  align-items: flex-end;
}
.clavierNumerique .container {
  max-width: 500px;
  width: 100%;
  overflow: inherit;
  padding-top: 30px;
}
.clavierNumerique .container .qui_popup {
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 1;
}
.clavierNumerique .container .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: auto;
}
.clavierNumerique .container .content .text,
.clavierNumerique .container .content h4 {
  align-self: center;
}
.clavierNumerique .container .content .result {
  align-self: center;
  font-weight: 900;
  font-size: 24px;
  min-height: 30px;
  letter-spacing: 5px;
  max-width: 100%;
  overflow: auto;
}
.clavierNumerique .container .content .clavier {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.clavierNumerique .container .content .clavier button {
  background: rgb(255, 229.5, 229.5);
  color: #FF0000;
}
.clavierNumerique .container .content .clavier button icon {
  color: #FF0000;
}
.clavierNumerique .container .content .clavier button.span2 {
  grid-column: span 2;
}
.clavierNumerique .container .content .clavier button.supp {
  color: rgb(229.5, 229.5, 229.5);
  background: #000000;
}
.clavierNumerique .container .content .clavier button.supp icon {
  color: rgb(229.5, 229.5, 229.5);
}
.clavierNumerique .container .content .clavier button.negative {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.clavierNumerique .container .content .clavier button.negative icon {
  color: #0088ce;
}
.clavierNumerique .container .content .clavier button.confirm {
  grid-column: span 3;
  color: rgb(229.5, 243.1, 250.1);
  background: #0088ce;
}
.clavierNumerique .container .content .clavier button.confirm icon {
  color: rgb(229.5, 243.1, 250.1);
}

.box_retour {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  position: sticky;
  z-index: 2;
  top: 20px;
  padding: 5px;
  background: #f5f5f5;
  box-shadow: 0 0 10px #dddddd;
  border-radius: 23px;
  align-items: center;
}
.box_retour button {
  background: #ffffff;
  color: #000000;
  padding: 10px 30px;
  height: 100%;
}
.box_retour button span {
  color: #000000;
}
.box_retour img {
  height: 44px;
}

main.print .no-print,
main.print .quit,
main.print #alert-container {
  display: none !important;
}
main.print .table-container {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
main.print table {
  page-break-inside: auto !important;
  width: 100% !important;
  border-collapse: collapse !important;
}
main.print table tr,
main.print table td,
main.print table th {
  break-inside: avoid;
  /* Standard moderne */
  -webkit-column-break-inside: avoid;
  /* Safari/Chrome */
  -webkit-region-break-inside: avoid;
  page-break-inside: avoid;
  /* Ancien standard */
}
main.print .print_pdf.tableau_production .table-container {
  break-inside: initial;
  -webkit-column-break-inside: initial;
  page-break-inside: initial;
}
main.print .print_pdf.tableau_production table {
  page-break-inside: initial !important;
}

@media print {
  .no-print,
  #alert-container {
    display: none !important;
  }
  .table-container {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
  }
  table {
    page-break-inside: auto !important;
    width: 100% !important;
    border-collapse: collapse !important;
  }
  table tr,
  table td,
  table th {
    break-inside: avoid;
    /* Standard moderne */
    -webkit-column-break-inside: avoid;
    /* Safari/Chrome */
    -webkit-region-break-inside: avoid;
    page-break-inside: avoid;
    /* Ancien standard */
  }
  .print_pdf.tableau_production .table-container {
    break-inside: initial;
    -webkit-column-break-inside: initial;
    page-break-inside: initial;
  }
  .print_pdf.tableau_production table {
    page-break-inside: initial !important;
  }
}
.print_pdf {
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}
.print_pdf button:not(.quit) {
  display: none !important;
}
.print_pdf .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  bottom: 20px;
}
.print_pdf .actions button {
  flex: 1 0 max-content;
  max-width: 100%;
}
.print_pdf .actions button.print {
  background: #000000;
}
.print_pdf .table-container {
  overflow: visible;
  max-height: none;
}
.print_pdf .table-container thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
.print_pdf .table-responsive-print {
  overflow: visible !important;
  width: 100% !important;
  max-width: none !important;
}
.print_pdf .table-responsive-print table {
  table-layout: auto !important;
  width: 100% !important;
  border-collapse: collapse !important;
}
.print_pdf table {
  page-break-inside: auto;
}
.print_pdf table thead {
  display: table-header-group;
  position: relative;
}
.print_pdf table tr {
  page-break-inside: avoid;
  page-break-after: auto;
}
.print_pdf .kpi-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}
.print_pdf .kpi-grid .kpi-card {
  padding: 10px !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}
.print_pdf .kpi-grid .kpi-card .kpi-icon {
  width: 30px !important;
  height: 30px !important;
  margin-bottom: 5px !important;
}
.print_pdf .kpi-grid .kpi-card .kpi-icon icon {
  font-size: 1.2rem !important;
}
.print_pdf .kpi-grid .kpi-card .kpi-value {
  font-size: 1rem !important;
}
.print_pdf .kpi-grid .kpi-card .kpi-label {
  font-size: 0.7rem !important;
}
.print_pdf .nested-arrets-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem !important;
  margin: 2px 0;
  background: #ffffff;
  border: 1px solid #bbb;
}
.print_pdf .nested-arrets-table th,
.print_pdf .nested-arrets-table td {
  padding: 3px !important;
  border: 1px solid #bbb !important;
  text-align: left !important;
}
.print_pdf .nested-arrets-table th {
  background: #f0f0f0 !important;
  color: #000000 !important;
  font-weight: 700 !important;
}

.eiffage-loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* From Uiverse.io by ZacharyCrespin */
@keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }
  10.5% {
    left: 0;
    top: 0;
  }
  12.5% {
    left: 32px;
    top: 0;
  }
  23% {
    left: 32px;
    top: 0;
  }
  25% {
    left: 64px;
    top: 0;
  }
  35.5% {
    left: 64px;
    top: 0;
  }
  37.5% {
    left: 64px;
    top: 32px;
  }
  48% {
    left: 64px;
    top: 32px;
  }
  50% {
    left: 32px;
    top: 32px;
  }
  60.5% {
    left: 32px;
    top: 32px;
  }
  62.5% {
    left: 32px;
    top: 64px;
  }
  73% {
    left: 32px;
    top: 64px;
  }
  75% {
    left: 0;
    top: 64px;
  }
  85.5% {
    left: 0;
    top: 64px;
  }
  87.5% {
    left: 0;
    top: 32px;
  }
  98% {
    left: 0;
    top: 32px;
  }
  100% {
    left: 0;
    top: 0;
  }
}
.loader {
  position: relative;
  width: 96px;
  height: 96px;
  transform: rotate(45deg);
}

.loader-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 0px;
  background: #FF0000;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: square-animation 10s ease-in-out infinite both;
}

.loader-square:nth-of-type(0) {
  animation-delay: 0s;
}

.loader-square:nth-of-type(1) {
  animation-delay: -1.4285714286s;
}

.loader-square:nth-of-type(2) {
  animation-delay: -2.8571428571s;
}

.loader-square:nth-of-type(3) {
  animation-delay: -4.2857142857s;
}

.loader-square:nth-of-type(4) {
  animation-delay: -5.7142857143s;
}

.loader-square:nth-of-type(5) {
  animation-delay: -7.1428571429s;
}

.loader-square:nth-of-type(6) {
  animation-delay: -8.5714285714s;
}

.loader-square:nth-of-type(7) {
  animation-delay: -10s;
}

#connect {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  margin: auto;
  justify-content: center;
}
@media (max-width: 500px) {
  #connect {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  #connect .form-container {
    padding: 20px 15px;
  }
}
#connect .tabs {
  display: flex;
  width: 100%;
}
#connect .tabs .tab {
  flex: 1;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #FF0000;
  color: #ffffff;
}
#connect .form-container {
  padding: 30px 20px;
}
#connect .form-container .form-group {
  margin-bottom: 20px;
}
#connect .form-container .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000000;
}
#connect .form-container .form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border 0.3s ease;
}
#connect .form-container .form-group input:focus {
  border-color: #FF0000;
  outline: none;
}
#connect .form-container button {
  width: 100%;
  padding: 14px;
  background-color: #FF0000;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#connect .form-container button:hover {
  background-color: #cc0000;
}
#connect .forgot-password {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #666;
  text-decoration: none;
  cursor: pointer;
}
#connect .forgot-password:hover {
  color: #FF0000;
}
#connect .logo-container {
  text-align: center;
  padding: 20px 0;
}
#connect .logo-container .logo {
  max-width: 180px;
}
#connect .error-message {
  color: #FF0000;
  font-size: 0.875rem;
  margin-top: 5px;
}

#home {
  justify-content: center;
}

.content_home .content_img {
  height: 100px;
}
.content_home .content_img img {
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.content_home .notification {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  font-size: 2em;
}
.content_home .notification .nbr {
  position: absolute;
  right: -8px;
  top: -8px;
  background: #FF0000;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px;
  font-size: 0.5em;
}
.content_home .content_chantier {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.content_home .content_chantier .group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}
.content_home .content_chantier .group h3 {
  width: 100%;
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 5px;
}
.content_home .content_chantier .group .otherChantier {
  width: 100%;
  text-align: center;
  cursor: pointer;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 12px;
  font-weight: 700;
  color: #0088ce;
  transition: all 0.3s ease;
}
.content_home .content_chantier .group .otherChantier:hover {
  background: rgba(0, 136, 206, 0.1);
}
.content_home .content_chantier .group .chantier {
  flex: 1 1 350px;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.content_home .content_chantier .group .chantier:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.content_home .content_chantier .group .chantier:hover .card-footer icon {
  transform: translateX(5px);
}
.content_home .content_chantier .group .chantier .card-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 1px solid #f5f5f5;
}
.content_home .content_chantier .group .chantier .card-header .site-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.content_home .content_chantier .group .chantier .card-header .site-info .site-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
}
.content_home .content_chantier .group .chantier .card-header .site-info .site-name .traitance-icon {
  color: #FED100;
  font-size: 1.2rem;
}
.content_home .content_chantier .group .chantier .card-header .site-info .site-lieu {
  font-size: 0.85rem;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 4px;
}
.content_home .content_chantier .group .chantier .card-header .site-info .site-lieu icon {
  font-size: 1rem;
  color: #0088ce;
}
.content_home .content_chantier .group .chantier .card-header .statut-badge {
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.content_home .content_chantier .group .chantier .card-header .statut-badge.nouveau {
  background: rgba(0, 136, 206, 0.1);
  color: #0088ce;
}
.content_home .content_chantier .group .chantier .card-header .statut-badge.en-cours {
  background: rgba(254, 209, 0, 0.15);
  color: rgb(152, 125.0708661417, 0);
}
.content_home .content_chantier .group .chantier .card-header .statut-badge.terminé {
  background: rgba(52, 178, 51, 0.1);
  color: #34B233;
}
.content_home .content_chantier .group .chantier .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content_home .content_chantier .group .chantier .card-body .info-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.content_home .content_chantier .group .chantier .card-body .info-row > icon {
  font-size: 1.2rem;
  color: #0088ce;
  background: rgba(0, 136, 206, 0.08);
  padding: 8px;
  border-radius: 10px;
  flex-shrink: 0;
}
.content_home .content_chantier .group .chantier .card-body .info-row .info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.content_home .content_chantier .group .chantier .card-body .info-row .info-content .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #666666;
  font-weight: 700;
}
.content_home .content_chantier .group .chantier .card-body .info-row .info-content .value {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
}
.content_home .content_chantier .group .chantier .card-footer {
  margin-top: auto;
  padding: 15px 20px;
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
}
.content_home .content_chantier .group .chantier .card-footer icon {
  color: #0088ce;
  transition: transform 0.3s ease;
}
.content_home .content_heure {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.content_home .content_heure > h2 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 5px;
}
.content_home .content_heure .box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.content_home .content_heure .box .group_date {
  display: flex;
  gap: 10px;
}
.content_home .content_heure .box .group_date button {
  max-width: 15%;
  width: 100%;
  background: #000000;
}
.content_home .content_heure .box .group_date p {
  width: 100%;
  text-align: center;
  align-content: center;
  background: #f5f5f5;
  border-radius: 18px;
  padding: 10px;
  text-transform: uppercase;
  color: #FF0000;
  font-weight: 900;
}
.content_home .content_heure .box .group_heures {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  max-height: 500px;
  overflow-y: auto;
  padding: 5px;
}
@media (max-width: 500px) {
  .content_home .content_heure .box .group_heures {
    grid-template-columns: 1fr;
  }
}
.content_home .content_heure .box .group_heures .date-group-header {
  grid-column: 1/-1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  padding: 10px 0;
  border-bottom: 2px solid #FF0000;
  color: #000000;
}
.content_home .content_heure .box .group_heures .date-group-header icon {
  color: #FF0000;
  font-size: 1.4rem;
}
.content_home .content_heure .box .group_heures .date-group-header span {
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.content_home .content_heure .box .group_heures .horaire_resume {
  background: #ffffff;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.content_home .content_heure .box .group_heures .horaire_resume:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 136, 206, 0.2);
}
.content_home .content_heure .box .group_heures .horaire_resume:hover .card-footer icon {
  transform: translateX(5px);
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .site-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .site-info .site-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000000;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .site-info .perf-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .site-info .perf-container .perf-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .site-info .perf-container .perf-tag.good {
  background: rgba(52, 178, 51, 0.1);
  color: #34B233;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .site-info .perf-container .perf-tag.bof {
  background: rgba(254, 209, 0, 0.15);
  color: rgb(152, 125.0708661417, 0);
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .site-info .perf-container .perf-tag.error {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .card-indicators {
  display: flex;
  gap: 8px;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-header .card-indicators icon {
  color: #0088ce;
  background: rgba(0, 136, 206, 0.05);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.1rem;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-body .info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-body .info-row > icon {
  font-size: 1.2rem;
  color: #0088ce;
  flex-shrink: 0;
  margin-top: 2px;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-body .info-row .info-content .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-body .info-row .info-content .value {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-body .draft-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(52, 178, 51, 0.08);
  border-radius: 12px;
  color: #34B233;
  font-size: 0.9rem;
  font-weight: 600;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-body .draft-message icon {
  font-size: 1.3rem;
}
.content_home .content_heure .box .group_heures .horaire_resume.brouillon {
  border-left: 5px solid #34B233;
}
.content_home .content_heure .box .group_heures .horaire_resume.brouillon .statut-badge.draft {
  background: #34B233;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #666666;
}
.content_home .content_heure .box .group_heures .horaire_resume .card-footer icon {
  color: #0088ce;
  transition: transform 0.3s ease;
}

.heures_chantier .box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.heures_chantier .box .group {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.heures_chantier .box .group:hover {
  background-color: rgb(250.1, 250.1, 250.1);
}
.heures_chantier .box .group .date {
  text-transform: uppercase;
  font-weight: 900;
}
.heures_chantier .box .group .informationsMateriel {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
}
.heures_chantier .box_resumer {
  padding: 20px;
  border-radius: 20px;
  border: 1px dashed;
}
.heures_chantier .box_resumer p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #dddddd;
  padding: 0.5rem 0;
}
.heures_chantier .box_resumer p:last-child {
  border-bottom: none;
}
.heures_chantier .box_resumer p strong {
  min-width: 150px;
}

.tableau_production {
  max-width: none;
}
.tableau_production .select-periode-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tableau_production .select-periode-container .mois-selector-container,
.tableau_production .select-periode-container .date-range-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tableau_production .select-periode-container .button-container {
  display: flex;
  gap: 10px;
}
.tableau_production .select-periode-container .button-container button.generate-button {
  flex: 1;
  max-width: 100%;
}
.tableau_production .select-periode-container .button-container button.delete {
  background: #000000;
}
.tableau_production .filtre-colonnes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tableau_production .filtre-colonnes h3 {
  width: 100%;
}
.tableau_production .filtre-colonnes .form-checkbox {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 10px;
  flex: 1 max-content;
}
.tableau_production .filtre-colonnes .form-checkbox label {
  text-transform: capitalize;
}
.tableau_production .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tableau_production .actions button {
  flex: 1 0;
}
.tableau_production .actions button.export {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.tableau_production .actions button.export icon {
  color: #0088ce;
}
.tableau_production .actions button.export icon {
  color: #0088ce;
}
.tableau_production .actions button.export {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.tableau_production .actions button.export icon {
  color: #0088ce;
}
.tableau_production .actions button.export icon {
  color: #0088ce;
}
.tableau_production .actions button.exel {
  background: rgb(234.7, 247.3, 234.6);
  color: #34B233;
}
.tableau_production .actions button.exel icon {
  color: #34B233;
}
.tableau_production .actions button.exel icon {
  color: #34B233;
}
.tableau_production .actions button.client {
  background: rgb(229.5, 229.5, 229.5);
  color: #000000;
}
.tableau_production .actions button.client icon {
  color: #000000;
}
.tableau_production .actions button.client icon {
  color: #000000;
}
.tableau_production table .total-chantier,
.tableau_production table .total-mensuel {
  font-weight: 900;
}
.tableau_production table .col-default-arrets {
  padding: 0;
}
.tableau_production table .col-default-arrets table td,
.tableau_production table .col-default-arrets table th {
  padding: 2px;
  font-size: x-small;
}

.info_chantier {
  width: 100%;
}
.info_chantier .chantier-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.info_chantier .chantier-details #statut {
  width: 100%;
}
.info_chantier .chantier-details #statut .value {
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 10px;
  background: #0088ce;
  color: #ffffff;
}
.info_chantier .chantier-details #idChantier,
.info_chantier .chantier-details #annee_archive {
  width: 100%;
}
.info_chantier .chantier-details #annee_archive span {
  padding: 5px 10px;
  border-radius: 10px;
  background: #0088ce;
  color: #ffffff;
}
.info_chantier .chantier-details .info-bloc {
  flex: 1 max-content;
  padding: 20px;
  border-radius: 20px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info_chantier .chantier-details .info-bloc.ajout {
  flex: 1 100%;
  padding: 0;
  border-radius: 0;
  background: none;
}
.info_chantier .chantier-details .info-bloc icon {
  color: #34B233;
}
.info_chantier .chantier-details .info-bloc.productions .productions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info_chantier .chantier-details .info-bloc.productions .production-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #dddddd;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.1rem;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header .debit-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header .debit-status.alert {
  background: rgb(255, 229.5, 229.5);
  color: #FF0000;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header .debit-status.alert icon {
  color: #FF0000;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header .debit-status.warning {
  background: rgb(254.9, 250.4, 229.5);
  color: #FED100;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header .debit-status.warning icon {
  color: #FED100;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header .debit-status.good {
  background: rgb(234.7, 247.3, 234.6);
  color: #34B233;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .group-header .debit-status.good icon {
  color: #34B233;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .debit-bar-container {
  height: 8px;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .debit-bar-container .debit-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .debit-bar-container .debit-bar-fill.alert {
  background: #FF0000;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .debit-bar-container .debit-bar-fill.warning {
  background: #FED100;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .debit-bar-container .debit-bar-fill.good {
  background: #34B233;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .debit-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #666666;
  font-weight: 600;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 10px;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .granulo-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .granulo-info .taille {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .granulo-info .tonnage {
  font-weight: 600;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .granulo-info .tonnage .objectif-val {
  color: #666666;
  font-size: 0.9em;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .progress-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .progress-wrapper .progress-bar-container {
  flex: 1;
  height: 10px;
  background: #dddddd;
  border-radius: 5px;
  overflow: hidden;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .progress-wrapper .progress-bar-container .progress-bar-fill {
  height: 100%;
  background: #0088ce;
  border-radius: 5px;
  transition: width 0.5s ease;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .progress-wrapper .progress-bar-container .progress-bar-fill.reussi {
  background: #34B233;
}
.info_chantier .chantier-details .info-bloc.productions .production-group .granulometries-list .granulo-item .progress-wrapper .progress-perc {
  font-size: 0.8rem;
  font-weight: 800;
  min-width: 35px;
}
.info_chantier .chantier-details .info-bloc.productions .total_chantier {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.info_chantier .chantier-details .info-bloc.productions .total_chantier icon {
  color: #0088ce;
}
.info_chantier .chantier-details .info-bloc.materiels .materiels-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  width: 100%;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #dddddd;
  transition: all 0.3s ease;
  height: 100%;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: #0088ce;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .card-header-main {
  display: flex;
  align-items: center;
  gap: 15px;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .card-header-main icon {
  font-size: 1.6rem;
  color: #0088ce;
  background: rgba(0, 136, 206, 0.1);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .card-header-main .materiel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .card-header-main .materiel-info .engin {
  font-weight: 800;
  font-size: 1rem;
  color: #000000;
  line-height: 1.2;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .card-header-main .materiel-info .code {
  font-size: 0.85rem;
  color: #666666;
  font-weight: 700;
  opacity: 0.8;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dotted #dddddd;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .stat-item .label {
  font-size: 0.7rem;
  font-weight: 900;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .stat-item .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000000;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .stat-item .value strong {
  color: #0088ce;
  background: rgba(0, 136, 206, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .consumptions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .consumptions .cons-item {
  display: flex;
  flex-direction: column;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .consumptions .cons-item:last-child:nth-child(odd) {
  grid-column: span 2;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .consumptions .cons-item .c-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #666666;
  margin-bottom: 2px;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card .stats-grid .consumptions .cons-item .c-value {
  font-size: 0.85rem;
  font-weight: 800;
  color: #000000;
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card.deleted {
  border-color: rgba(255, 0, 0, 0.2);
  background: rgba(255, 0, 0, 0.02);
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card.deleted .card-header-main icon {
  color: #FF0000;
  background: rgba(255, 0, 0, 0.1);
}
.info_chantier .chantier-details .info-bloc.materiels .materiel-card.deleted .engin {
  color: #FF0000 !important;
}
.info_chantier .chantier-details .localisation {
  background: transparent;
  border: 1px solid #666666;
  width: 100%;
  color: #666666;
}
.info_chantier .chantier-details .localisation span {
  color: #666666;
}
.info_chantier .box_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.info_chantier .box_actions button {
  flex: 1 max-content;
}
.info_chantier .box_actions .add_hour {
  background: #0088ce;
  flex: 100%;
  padding: 30px;
}
.info_chantier .box_actions .add_hour.pointage {
  background: #34B233;
}
.info_chantier .box_actions .dossier-terminé {
  background: #000000;
}

.info_horaire .box_horaire {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.info_horaire .box_horaire .info-bloc {
  flex: 1 max-content;
  padding: 20px;
  border-radius: 20px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info_horaire .box_horaire .info-bloc icon {
  color: #34B233;
}
.info_horaire .box_horaire .info-bloc.productions .productions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info_horaire .box_horaire .info-bloc.productions .production-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #dddddd;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.1rem;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header .debit-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header .debit-status.alert {
  background: rgb(255, 229.5, 229.5);
  color: #FF0000;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header .debit-status.alert icon {
  color: #FF0000;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header .debit-status.warning {
  background: rgb(254.9, 250.4, 229.5);
  color: #FED100;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header .debit-status.warning icon {
  color: #FED100;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header .debit-status.good {
  background: rgb(234.7, 247.3, 234.6);
  color: #34B233;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .group-header .debit-status.good icon {
  color: #34B233;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .debit-bar-container {
  height: 8px;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .debit-bar-container .debit-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .debit-bar-container .debit-bar-fill.alert {
  background: #FF0000;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .debit-bar-container .debit-bar-fill.warning {
  background: #FED100;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .debit-bar-container .debit-bar-fill.good {
  background: #34B233;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .debit-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #666666;
  font-weight: 600;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .granulometries-list {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .granulometries-list .granulo-item {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 10px;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .granulometries-list .granulo-item .granulo-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .granulometries-list .granulo-item .granulo-info .taille {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.info_horaire .box_horaire .info-bloc.productions .production-group .granulometries-list .granulo-item .granulo-info .tonnage {
  font-weight: 600;
}
.info_horaire .box_horaire .info-bloc.materiels {
  flex: 100%;
}
.info_horaire .box_horaire .info-bloc.materiels .materiels-compact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dddddd;
  transition: all 0.2s ease;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row:hover {
  border-color: #0088ce;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-main-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-main-info icon {
  font-size: 1.2rem;
  color: #0088ce;
  background: rgba(0, 136, 206, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-main-info .mat-name {
  display: flex;
  flex-direction: column;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-main-info .mat-name .engin {
  font-weight: 700;
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.2;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-main-info .mat-name .code {
  font-size: 0.75rem;
  color: #666666;
  font-weight: 600;
  opacity: 0.7;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 2;
  justify-content: flex-end;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats .stat-hours .value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666666;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats .stat-hours .value strong {
  color: #0088ce;
  background: rgba(0, 136, 206, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
  font-weight: 800;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats .mat-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats .mat-pills .pill {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(221, 221, 221, 0.5);
  gap: 4px;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats .mat-pills .pill .p-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats .mat-pills .pill .p-value {
  font-size: 0.75rem;
  font-weight: 800;
  color: #000000;
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row.deleted {
  border-color: rgba(255, 0, 0, 0.2);
  background: rgba(255, 0, 0, 0.02);
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row.deleted .mat-main-info icon {
  color: #FF0000;
  background: rgba(255, 0, 0, 0.1);
}
.info_horaire .box_horaire .info-bloc.materiels .materiel-row.deleted .engin {
  color: #FF0000 !important;
}
@media (max-width: 768px) {
  .info_horaire .box_horaire .info-bloc.materiels .materiel-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats {
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px dotted #dddddd;
    padding-top: 10px;
  }
  .info_horaire .box_horaire .info-bloc.materiels .materiel-row .mat-stats .mat-pills {
    justify-content: flex-start;
    width: 100%;
  }
}
.info_horaire .box_horaire .info-bloc .groups_imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
}
.info_horaire .box_horaire .info-bloc .groups_imgs li {
  flex: 1 300px;
  max-width: 100%;
}
.info_horaire .box_horaire .info-bloc .groups_imgs img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 300px;
}
.info_horaire .box_actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.info_horaire .box_actions button {
  flex: 1 0 max-content;
  max-width: 100%;
}
.info_horaire .box_actions button.delete {
  background-color: #000000;
}
.info_horaire .box_actions button:not(.delete) {
  background-color: #0088ce;
}

.create_paper_day .group .granulometries {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.create_paper_day .group .granulometries .granulometrie {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.create_paper_day .group button {
  background: #0088ce;
}
.create_paper_day .group button.add_granu {
  background: #34B233;
}

.create_hours_day .materiel_item {
  padding: 10px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.create_hours_day .materiel_item button {
  color: #0088ce;
  background: transparent;
  padding: 5px;
}
.create_hours_day .productions {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.create_hours_day .productions i {
  align-self: flex-end;
  color: #666;
  font-size: 0.9em;
  text-align: end;
}
.create_hours_day .liste-arrets {
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: flex-start;
}
.create_hours_day .liste-arrets .arret_item {
  flex: 1 max-content;
  max-width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  gap: 10px;
  flex-direction: column;
  border: 1px solid transparent;
}
.create_hours_day .liste-arrets .arret_item .item-checkbox {
  display: flex;
  align-items: center;
  gap: 1ch;
}
.create_hours_day .liste-arrets .arret_item .item-checkbox .checkbox {
  min-width: 30px;
  aspect-ratio: 1/1;
  color: #0088ce;
  border-radius: 50%;
  border: 1px solid #dddddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.create_hours_day .liste-arrets .arret_item .questionnaire {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.create_hours_day .liste-arrets .arret_item .questionnaire .arret_enregistre {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.create_hours_day .liste-arrets .arret_item .questionnaire .arret_enregistre .arret {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}
.create_hours_day .liste-arrets .arret_item .questionnaire .arret_enregistre .arret button {
  color: rgb(229.5, 229.5, 229.5);
  background: #000000;
  padding: 5px;
  border-radius: 5px;
}
.create_hours_day .liste-arrets .arret_item .questionnaire .arret_enregistre .arret button icon {
  color: rgb(229.5, 229.5, 229.5);
}
.create_hours_day .liste-arrets .arret_item.active {
  flex: 100%;
}
.create_hours_day .liste-arrets .arret_item.active .checkbox {
  border-color: #FF0000;
  color: #FF0000;
}
.create_hours_day .liste-arrets .arret_item button.add_arret {
  width: 100%;
  background: rgb(255, 229.5, 229.5);
  color: #FF0000;
}
.create_hours_day .liste-arrets .arret_item button.add_arret icon {
  color: #FF0000;
}

.liste_materiels .box_materiel {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.liste_materiels .box_materiel h3 {
  width: 100%;
}
.liste_materiels .box_materiel .materiel {
  padding: 10px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex: 1 300px;
  max-width: 100%;
}
.liste_materiels .box_materiel .materiel .box_actions {
  display: flex;
  gap: 10px;
}
.liste_materiels .box_materiel .materiel .box_actions button {
  padding: 5px 10px;
  border-radius: 10px;
}
.liste_materiels .box_materiel .materiel .box_actions button.edit {
  background: #0088ce;
}

.add_materiel form .box {
  flex-wrap: wrap;
  flex-direction: row !important;
}
.add_materiel form .box .group-code {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 300px;
  max-width: 100%;
}
.add_materiel form .box .group-code .form-group {
  flex: none !important;
}
.add_materiel form .box .form-group {
  flex: 1 300px;
  max-width: 100%;
}
.add_materiel form .box .vidanges-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.add_materiel form .box .vidanges-section h3 {
  width: 100%;
}
.add_materiel form .box .vidanges-section .vidange-bloc {
  flex: 1 300px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #dddddd;
}
.add_materiel form .box .vidanges-section .vidange-bloc .form-checkbox {
  padding: 10px;
  background: #f5f5f5;
  border-radius: 10px;
  flex: 1 max-content;
}
.add_materiel form .box .vidanges-section .vidange-bloc .form-group {
  flex: none;
}

.planning_list .planning_header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.planning_list .planning_header button.new {
  width: 100%;
}
@media (max-width: 1200px) {
  .planning_list .planning_header button.new {
    align-self: flex-end;
    right: -20px;
    border-radius: 20px 0 0 20px;
    width: max-content;
  }
}

.add_planning_semaine {
  max-width: none;
}
.add_planning_semaine form .groups-checkboxs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}
.add_planning_semaine form .groups-checkboxs .form-checkbox {
  padding: 10px;
  border-radius: 10px;
  flex: 1 max-content;
  text-transform: capitalize;
}
.add_planning_semaine form .deleteValue {
  margin-top: 10px;
  background: #f5f5f5;
  width: 100%;
}
.add_planning_semaine form .deleteValue icon {
  color: #FF0000;
}
.add_planning_semaine.pointage table td.alert {
  background: rgb(255, 229.5, 229.5);
}

.planning_list .planning-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.planning_list .planning-content .planning {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid #dddddd;
  cursor: pointer;
  padding-bottom: 20px;
}
.planning_list .planning-content .planning .group {
  flex: 1;
  max-width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #f5f5f5;
}
.planning_list .planning-content .planning .group h4 {
  color: #FF0000;
}
.planning_list .planning-content .planning .total {
  flex: 100%;
}
.planning_list .planning-content .planning .total span {
  margin-left: 10px;
  font-size: 1.5em;
  color: #0088ce;
}

.planning_view .brouillon,
.pointage_view .brouillon {
  background: rgb(234.7, 247.3, 234.6);
  color: #34B233;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  width: max-content;
}
.planning_view .brouillon icon,
.pointage_view .brouillon icon {
  color: #34B233;
}
.planning_view .groups-info,
.pointage_view .groups-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.planning_view .groups-info .group,
.pointage_view .groups-info .group {
  flex: 1 300px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 20px;
}
.planning_view table td.alert,
.pointage_view table td.alert {
  background: rgb(255, 229.5, 229.5);
  color: #FF0000;
}
.planning_view .planning_actions,
.pointage_view .planning_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.planning_view .planning_actions h3,
.pointage_view .planning_actions h3 {
  width: 100%;
}
.planning_view .planning_actions button,
.pointage_view .planning_actions button {
  flex: 1 300px;
  max-width: 100%;
}
.planning_view .planning_actions button.edit,
.pointage_view .planning_actions button.edit {
  background: rgb(255, 229.5, 229.5);
  color: #FF0000;
}
.planning_view .planning_actions button.edit icon,
.pointage_view .planning_actions button.edit icon {
  color: #FF0000;
}
.planning_view .planning_actions button.edit icon,
.pointage_view .planning_actions button.edit icon {
  color: #FF0000;
}
.planning_view .planning_actions button.export,
.pointage_view .planning_actions button.export {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.planning_view .planning_actions button.export icon,
.pointage_view .planning_actions button.export icon {
  color: #0088ce;
}
.planning_view .planning_actions button.export icon,
.pointage_view .planning_actions button.export icon {
  color: #0088ce;
}
.planning_view .planning_actions button.copy,
.pointage_view .planning_actions button.copy {
  background: rgb(234.7, 247.3, 234.6);
  color: #34B233;
}
.planning_view .planning_actions button.copy icon,
.pointage_view .planning_actions button.copy icon {
  color: #34B233;
}
.planning_view .planning_actions button.copy icon,
.pointage_view .planning_actions button.copy icon {
  color: #34B233;
}
.planning_view .planning_actions button.delete,
.pointage_view .planning_actions button.delete {
  color: rgb(229.5, 229.5, 229.5);
  background: #000000;
}
.planning_view .planning_actions button.delete icon,
.pointage_view .planning_actions button.delete icon {
  color: rgb(229.5, 229.5, 229.5);
}

.liste_vidanges {
  gap: 30px;
}
.liste_vidanges > .actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.liste_vidanges > .actions button {
  flex: 1 1 200px;
  padding: 12px 20px;
  border-radius: 15px;
}
.liste_vidanges > .actions button.tab {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.liste_vidanges > .actions button.tab icon {
  color: #0088ce;
}
.liste_vidanges > .actions button.add {
  background: rgb(234.7, 247.3, 234.6);
  color: #34B233;
}
.liste_vidanges > .actions button.add icon {
  color: #34B233;
}
.liste_vidanges form {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.liste_vidanges form input {
  border-radius: 20px;
  padding: 12px 20px;
  background: rgba(245, 245, 245, 0.5);
  border: 1px solid #dddddd;
}
.liste_vidanges form input:focus {
  background: #ffffff;
}
.liste_vidanges .container-materiels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 25px;
  width: 100%;
}
@media (max-width: 500px) {
  .liste_vidanges .container-materiels {
    grid-template-columns: 1fr;
  }
}
.liste_vidanges .card-materiel {
  background: #ffffff;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.liste_vidanges .card-materiel:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.liste_vidanges .card-materiel .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 15px;
}
.liste_vidanges .card-materiel .card-header .machine-info {
  display: flex;
  flex-direction: column;
}
.liste_vidanges .card-materiel .card-header .machine-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #000000;
  font-weight: 800;
  text-transform: uppercase;
}
.liste_vidanges .card-materiel .card-header .machine-info .machine-type {
  font-size: 0.8rem;
  color: #666666;
  font-weight: 600;
  background: rgba(0, 136, 206, 0.1);
  color: #0088ce;
  padding: 2px 10px;
  border-radius: 20px;
  width: max-content;
  margin-top: 5px;
}
.liste_vidanges .card-materiel .card-header .machine-hours {
  text-align: right;
}
.liste_vidanges .card-materiel .card-header .machine-hours .hours-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FF0000;
}
.liste_vidanges .card-materiel .card-header .machine-hours .hours-label {
  display: block;
  font-size: 0.7rem;
  color: #666666;
  text-transform: uppercase;
  font-weight: 700;
}
.liste_vidanges .card-materiel .details-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.liste_vidanges .card-materiel .details-section h4 {
  font-size: 0.9rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.liste_vidanges .card-materiel .details-section h4::before {
  content: "";
  width: 4px;
  height: 15px;
  background: #FF0000;
  border-radius: 2px;
}
.liste_vidanges .card-materiel .details-section .vidange-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.liste_vidanges .card-materiel .details-section .vidange-item {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease;
}
.liste_vidanges .card-materiel .details-section .vidange-item .item-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.liste_vidanges .card-materiel .details-section .vidange-item .item-main icon {
  color: #0088ce;
  font-size: 1.2rem;
}
.liste_vidanges .card-materiel .details-section .vidange-item .item-main .item-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.liste_vidanges .card-materiel .details-section .vidange-item .item-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.liste_vidanges .card-materiel .details-section .vidange-item .item-status .status-val {
  font-family: monospace;
  font-weight: 700;
  font-size: 0.9rem;
}
.liste_vidanges .card-materiel .details-section .vidange-item .item-status .status-label {
  font-size: 0.7rem;
  color: #666666;
}
.liste_vidanges .card-materiel .details-section .vidange-item.alerte-maximal {
  background: #000000;
  color: #ffffff;
}
.liste_vidanges .card-materiel .details-section .vidange-item.alerte-maximal .item-status .status-label,
.liste_vidanges .card-materiel .details-section .vidange-item.alerte-maximal icon {
  color: rgba(255, 255, 255, 0.6);
}
.liste_vidanges .card-materiel .details-section .vidange-item.alerte-minimal {
  background: #FF0000;
  color: #ffffff;
}
.liste_vidanges .card-materiel .details-section .vidange-item.alerte-minimal .item-status .status-label,
.liste_vidanges .card-materiel .details-section .vidange-item.alerte-minimal icon {
  color: rgba(255, 255, 255, 0.6);
}
.liste_vidanges .card-materiel .details-section .vidange-item.alerte {
  background: rgba(254, 209, 0, 0.2);
  border: 1px solid #FED100;
}
.liste_vidanges .card-materiel .details-section .vidange-item.date-ok {
  background: rgba(52, 178, 51, 0.1);
  border: 1px solid rgba(52, 178, 51, 0.2);
}
.liste_vidanges .card-materiel .details-section .vidange-item.date-ok icon {
  color: #34B233;
}
.liste_vidanges .card-materiel .card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid #f5f5f5;
  padding-top: 15px;
}
.liste_vidanges .card-materiel .card-actions button {
  flex: 1;
  border-radius: 12px;
  padding: 10px;
  font-size: 0.9rem;
}
.liste_vidanges .card-materiel .card-actions button.edit {
  background: #f5f5f5;
  color: #000000;
}
.liste_vidanges .card-materiel .card-actions button.edit icon {
  color: #000000;
}
.liste_vidanges .card-materiel .card-actions button.delete {
  color: rgb(255, 229.5, 229.5);
  background: #FF0000;
}
.liste_vidanges .card-materiel .card-actions button.delete icon {
  color: rgb(255, 229.5, 229.5);
}

.tableau_vidanges {
  max-width: none;
  gap: 30px;
}
.tableau_vidanges .group_zoom {
  display: flex;
  gap: 10px;
}
.tableau_vidanges .group_zoom button {
  max-width: 15%;
  width: 100%;
  background: #000000;
}
.tableau_vidanges .group_zoom p {
  width: 100%;
  text-align: center;
  align-content: center;
  background: #f5f5f5;
  border-radius: 18px;
  padding: 10px;
  text-transform: uppercase;
  color: #FF0000;
  font-weight: 900;
}
.tableau_vidanges .group_zoom p:hover:not(.active) {
  background: rgba(0, 136, 206, 0.1);
}
.tableau_vidanges .export {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.tableau_vidanges .export icon {
  color: #0088ce;
}
.tableau_vidanges table td.default {
  background: rgb(230.9620087336, 248.0737991266, 230.8262008734);
  color: #34B233;
}
.tableau_vidanges table td.alerte {
  background: rgb(255, 223.0476190476, 163.5);
  color: rgb(136, 88, 0);
}
.tableau_vidanges table td.alerte-minimal {
  background: #FF0000;
  color: #ffffff;
}
.tableau_vidanges table td.alerte-maximal {
  background: #000000;
  color: #ffffff;
}

.page_admin {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 50px;
}
.page_admin > h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000000;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.page_admin > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #FF0000;
  border-radius: 2px;
}
.page_admin .admin-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(221, 221, 221, 0.3);
}
.page_admin .admin-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}
.page_admin .admin-section .section-header h2,
.page_admin .admin-section .section-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #000000;
}
.page_admin .admin-section .section-header .badge-count {
  background: rgba(0, 136, 206, 0.1);
  color: #0088ce;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
}
.page_admin .box-personnel .role-group {
  margin-bottom: 30px;
}
.page_admin .box-personnel .role-group:last-child {
  margin-bottom: 0;
}
.page_admin .box-personnel .role-group h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page_admin .box-personnel .role-group h4::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f5f5f5;
}
.page_admin .box-personnel .user-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.page_admin .box-personnel .user-card {
  background: #ffffff;
  border: 1px solid #f5f5f5;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.page_admin .box-personnel .user-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 136, 206, 0.3);
}
.page_admin .box-personnel .user-card .user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page_admin .box-personnel .user-card .user-info .user-name {
  font-weight: 700;
  color: #000000;
  font-size: 1rem;
}
.page_admin .box-personnel .user-card .user-info .user-role-label {
  font-size: 0.75rem;
  color: #666666;
  font-weight: 500;
}
.page_admin .box-personnel .user-card .actions {
  display: flex;
  gap: 10px;
}
.page_admin .box-personnel .user-card .actions button {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
}
.page_admin .box-personnel .user-card .actions button.edit {
  background: rgba(0, 136, 206, 0.1);
  color: #0088ce;
}
.page_admin .box-personnel .user-card .actions button.edit:hover {
  background: #0088ce;
  color: #ffffff;
}
.page_admin .box-personnel .user-card .actions button.blocked {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
}
.page_admin .box-personnel .user-card .actions button.blocked:hover {
  background: #FF0000;
  color: #ffffff;
}
.page_admin .box-personnel .ajout_utilisateur {
  width: 100%;
  margin-top: 25px;
  background: #0088ce !important;
  height: 55px;
  border-radius: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 136, 206, 0.15);
}
.page_admin .box-personnel .ajout_utilisateur:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 136, 206, 0.25);
}
.page_admin .blocked-section {
  background: rgba(255, 0, 0, 0.02);
  border: 1px dashed rgba(255, 0, 0, 0.2);
}
.page_admin .blocked-section .blocked-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page_admin .blocked-section .blocked-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid rgba(255, 0, 0, 0.1);
}
.page_admin .blocked-section .blocked-row span {
  font-weight: 600;
  color: #666666;
}
.page_admin .blocked-section .blocked-row button {
  background: rgba(52, 178, 51, 0.1);
  color: #34B233;
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page_admin .blocked-section .blocked-row button:hover {
  background: #34B233;
  color: #ffffff;
}
.page_admin .chantier_archiver .year-group {
  margin-bottom: 20px;
  border: 1px solid rgba(221, 221, 221, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.page_admin .chantier_archiver .year-group.collapsed .chantiers-grid {
  display: none;
}
.page_admin .chantier_archiver .year-group.collapsed .year-header {
  border-bottom-color: transparent;
}
.page_admin .chantier_archiver .year-group .year-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(221, 221, 221, 0.2);
}
.page_admin .chantier_archiver .year-group .year-header:hover {
  background: rgba(245, 245, 245, 0.3);
}
.page_admin .chantier_archiver .year-group .year-header .year-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: #000000;
}
.page_admin .chantier_archiver .year-group .year-header .expand-icon {
  color: #0088ce;
  font-size: 1.5rem;
}
.page_admin .chantier_archiver .year-group .chantiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 25px;
  background: rgba(245, 245, 245, 0.3);
}
.page_admin .chantier_archiver .chantier-card.archived {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.page_admin .chantier_archiver .chantier-card.archived:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #FF0000;
}
.page_admin .chantier_archiver .chantier-card.archived .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.page_admin .chantier_archiver .chantier-card.archived .card-header h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}
.page_admin .chantier_archiver .chantier-card.archived .card-header .year-badge {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 900;
}
.page_admin .chantier_archiver .chantier-card.archived .card-body p {
  font-size: 0.85rem;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.page_admin .chantier_archiver .chantier-card.archived .card-body p icon {
  color: #0088ce;
  font-size: 1.1rem;
}
.page_admin .chantier_archiver .chantier-card.archived .card-footer {
  margin-top: 15px;
}
.page_admin .chantier_archiver .chantier-card.archived .card-footer .view-btn {
  width: 100%;
  background: #dddddd;
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page_admin .chantier_archiver .chantier-card.archived .card-footer .view-btn icon {
  color: #000000;
}
.page_admin .chantier_archiver .chantier-card.archived .card-footer .view-btn:hover {
  background: #FF0000;
  color: #ffffff;
}
.page_admin .chantier_archiver .chantier-card.archived .card-footer .view-btn:hover icon {
  color: #ffffff;
}
.page_admin .horaires_planning .planning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.page_admin .horaires_planning .heures-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(221, 221, 221, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.page_admin .horaires_planning .heures-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 136, 206, 0.2);
}
.page_admin .horaires_planning .heures-card h3 {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 1.5px;
  font-weight: 800;
  position: relative;
  padding-bottom: 8px;
}
.page_admin .horaires_planning .heures-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #0088ce;
  border-radius: 2px;
}
.page_admin .horaires_planning .heures-card .time-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 40px;
  align-items: center;
}
.page_admin .horaires_planning .heures-card .time-badges-container .time-pill {
  background: rgba(0, 136, 206, 0.06);
  color: #0088ce;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(0, 136, 206, 0.1);
  transition: all 0.2s ease;
}
.page_admin .horaires_planning .heures-card .time-badges-container .time-pill:hover {
  background: #0088ce;
  color: #ffffff;
  transform: scale(1.05);
}
.page_admin .horaires_planning .heures-card .time-badges-container .no-time {
  color: #dddddd;
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}
.page_admin .horaires_planning .heures-card .config-btn {
  margin-top: 10px;
  background: rgba(245, 245, 245, 0.5);
  border: 1px solid rgba(221, 221, 221, 0.3);
  color: #000000;
  padding: 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.page_admin .horaires_planning .heures-card .config-btn icon {
  color: #666666;
  font-size: 1.2rem;
}
.page_admin .horaires_planning .heures-card .config-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.page_admin .horaires_planning .heures-card .config-btn:hover icon {
  color: #ffffff;
  transform: rotate(45deg);
}

.add_personnel {
  max-width: 800px;
  margin: 20px auto 100px;
}
.add_personnel .form-card {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  padding: 45px;
  border: 1px solid rgba(221, 221, 221, 0.2);
}
@media (max-width: 500px) {
  .add_personnel .form-card {
    padding: 25px;
    border-radius: 20px;
    margin: 10px;
  }
}
.add_personnel .form-card .form-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 45px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.15);
}
@media (max-width: 500px) {
  .add_personnel .form-card .form-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.add_personnel .form-card .form-header .icon-circle {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #0088ce, rgb(0, 102.3300970874, 155));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 136, 206, 0.2);
  flex-shrink: 0;
}
.add_personnel .form-card .form-header .icon-circle icon {
  color: #ffffff;
  font-size: 2.2rem;
}
.add_personnel .form-card .form-header .header-text h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.5px;
}
.add_personnel .form-card .form-header .header-text p {
  margin: 8px 0 0;
  color: #666666;
  font-size: 1rem;
  line-height: 1.4;
}
.add_personnel .form-card .modern-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .add_personnel .form-card .modern-form .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.add_personnel .form-card .modern-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.add_personnel .form-card .modern-form .form-group label {
  font-weight: 800;
  color: #000000;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.add_personnel .form-card .modern-form .form-group input,
.add_personnel .form-card .modern-form .form-group select {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(221, 221, 221, 0.3);
  padding: 16px 22px;
  background: rgba(245, 245, 245, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  color: #000000;
}
.add_personnel .form-card .modern-form .form-group input::placeholder,
.add_personnel .form-card .modern-form .form-group select::placeholder {
  color: #dddddd;
}
.add_personnel .form-card .modern-form .form-group input:focus,
.add_personnel .form-card .modern-form .form-group select:focus {
  border-color: #0088ce;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(0, 136, 206, 0.08);
  outline: none;
}
.add_personnel .form-card .modern-form .form-actions {
  margin-top: 50px;
}
.add_personnel .form-card .modern-form .form-actions .submit-btn {
  width: 100%;
  height: 64px;
  background: #FF0000 !important;
  border-radius: 22px;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.25);
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
}
.add_personnel .form-card .modern-form .form-actions .submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(255, 0, 0, 0.35);
  filter: brightness(1.1);
}
.add_personnel .form-card .modern-form .form-actions .submit-btn:active {
  transform: translateY(0);
}
.add_personnel .form-card .modern-form .form-actions .submit-btn icon {
  font-size: 1.6rem;
}

.page_pointage .box_liste_pointage {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page_pointage .box_liste_pointage .group_date {
  display: flex;
  gap: 10px;
}
.page_pointage .box_liste_pointage .group_date button {
  max-width: 15%;
  width: 100%;
  background: #000000;
}
.page_pointage .box_liste_pointage .group_date p {
  width: 100%;
  text-align: center;
  align-content: center;
  background: #f5f5f5;
  border-radius: 18px;
  padding: 10px;
  text-transform: uppercase;
  color: #FF0000;
  font-weight: 900;
}
.page_pointage .box_liste_pointage .heure_semaine {
  align-self: flex-end;
  cursor: pointer;
}
.page_pointage .box_liste_pointage .group_heures {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page_pointage .box_liste_pointage .group_heures h3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.page_pointage .box_liste_pointage .group_heures h3:hover icon {
  background: #f5f5f5;
}
.page_pointage .box_liste_pointage .group_heures h3 icon {
  transition: 0.2s ease;
  border-radius: 20px;
}
.page_pointage .box_liste_pointage .group_heures h3 icon.active {
  transform: rotate(180deg);
}
.page_pointage .box_liste_pointage .group_heures .parentPointage {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page_pointage .box_liste_pointage .group_heures .pointages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.page_pointage .box_liste_pointage .group_heures .pointages button.export {
  width: 100%;
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.page_pointage .box_liste_pointage .group_heures .pointages button.export icon {
  color: #0088ce;
}
.page_pointage .box_liste_pointage .group_heures .pointages button.export icon {
  color: #0088ce;
}
.page_pointage .box_liste_pointage .group_heures .pointages .brouillon_week {
  width: 100%;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage {
  flex: 1 0 400px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 20px;
  padding: 20px;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 136, 206, 0.3);
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage:hover .more-info icon {
  transform: scale(1.1) rotate(5deg);
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .badge-brouillon {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #FED100;
  color: #000000;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(254, 209, 0, 0.3);
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .badge-brouillon icon {
  font-size: 1.1rem;
  color: inherit;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 12px;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-header .date-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-header .date-info .week-number {
  background: #FF0000;
  color: #ffffff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-header .date-info .date-details {
  display: flex;
  flex-direction: column;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-header .date-info .date-details .year {
  font-size: 0.8rem;
  color: #666666;
  font-weight: 600;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-header .date-info .date-details .days {
  font-weight: 700;
  color: #000000;
  font-size: 0.95rem;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-header .more-info icon {
  transition: transform 0.3s ease;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-body .info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-body .info-row icon {
  color: #0088ce;
  font-size: 1.2rem;
  background: rgba(0, 136, 206, 0.1);
  padding: 6px;
  border-radius: 8px;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-body .info-row .info-content {
  display: flex;
  flex-direction: column;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-body .info-row .info-content .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-body .info-row .info-content .value {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  padding: 12px 15px;
  border-radius: 15px;
  margin-top: auto;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer .total-main {
  display: flex;
  flex-direction: column;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer .total-main .total-value {
  color: #0088ce;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer .total-main .total-label {
  font-size: 0.7rem;
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer .total-details {
  display: flex;
  gap: 15px;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer .total-details .detail-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer .total-details .detail-item .label {
  font-size: 0.65rem;
  color: #666666;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer .total-details .detail-item .value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 3px;
}
.page_pointage .box_liste_pointage .group_heures .pointages .pointage .card-footer .total-details .detail-item icon {
  font-size: 1rem;
  color: #666666;
}

.section_notifications {
  gap: 25px;
}
.section_notifications .box_notifications {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section_notifications .box_notifications .notification {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.section_notifications .box_notifications .notification.action::after {
  content: "open_in_new";
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 0.8em;
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  user-select: none;
  vertical-align: middle;
}
.section_notifications .box_notifications .notification.lu icon {
  background: rgb(234.7, 247.3, 234.6);
  color: #34B233;
}
.section_notifications .box_notifications .notification.lu icon icon {
  color: #34B233;
}
.section_notifications .box_notifications .notification icon {
  flex-shrink: 0;
  width: 50px;
  aspect-ratio: 1/1;
  font-size: 2em;
  border-radius: 50%;
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_notifications .box_notifications .notification icon icon {
  color: #0088ce;
}
.section_notifications .box_notifications .notification .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.section_notifications .box_notifications .notification .info .date {
  font-size: 0.8em;
}

.new_add_pointage .etape {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: flex-start;
  height: 100%;
}
.new_add_pointage .etape .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.new_add_pointage .etape h2 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.new_add_pointage .etape.etape1 .inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.new_add_pointage .etape.etape1 .inputs .day {
  padding: 16px 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dddddd;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.new_add_pointage .etape.etape1 .inputs .day::after {
  content: "circle";
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  user-select: none;
  vertical-align: middle;
  color: #dddddd;
  font-size: 1.4em;
  transition: all 0.3s ease;
}
.new_add_pointage .etape.etape1 .inputs .day:hover {
  border-color: rgba(0, 136, 206, 0.5);
  transform: translateX(5px);
  background: rgba(0, 136, 206, 0.02);
}
.new_add_pointage .etape.etape1 .inputs .day[data-active=true] {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
  border-color: #0088ce;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 136, 206, 0.15);
}
.new_add_pointage .etape.etape1 .inputs .day[data-active=true] icon {
  color: #0088ce;
}
.new_add_pointage .etape.etape1 .inputs .day[data-active=true]::after {
  content: "check_circle";
  color: #0088ce;
}
.new_add_pointage .etape.etape2 .days {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.new_add_pointage .etape.etape2 .days .day {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(221, 221, 221, 0.6);
  padding: 0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.new_add_pointage .etape.etape2 .days .day:hover {
  border-color: #0088ce;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.new_add_pointage .etape.etape2 .days .day .info-day {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 245, 245, 0.5);
  border-bottom: 1px solid rgba(221, 221, 221, 0.3);
}
.new_add_pointage .etape.etape2 .days .day .info-day .day-name {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.1rem;
  color: #000000;
}
.new_add_pointage .etape.etape2 .days .day .info-day .statut {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.new_add_pointage .etape.etape2 .days .day .info-day .statut icon {
  color: #0088ce;
}
.new_add_pointage .etape.etape2 .days .day .info-day .statut.no-complet {
  background: rgb(255, 229.5, 229.5);
  color: #FF0000;
}
.new_add_pointage .etape.etape2 .days .day .info-day .statut.no-complet icon {
  color: #FF0000;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage p {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #666666;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage p strong icon {
  color: #0088ce;
  font-size: 1.2rem;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage p.comment {
  font-style: italic;
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 10px;
  margin-top: 5px;
  border-left: 3px solid #dddddd;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage p.badge-repos {
  color: #FF8C00;
  font-weight: 800;
  background: rgba(255, 140, 0, 0.1);
  width: max-content;
  padding: 4px 10px;
  border-radius: 8px;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage p.badge-repos icon {
  color: #FF8C00;
  font-size: 1rem;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage .options-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage .options-badges .badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
}
.new_add_pointage .etape.etape2 .days .day .info-pointage .options-badges .badge icon {
  font-size: 1rem;
  color: #666666;
}
.new_add_pointage .etape.etape2 .days .day .copy-btn {
  margin: 0 15px 15px 15px;
  padding: 8px 20px;
  background: #000000;
  color: #ffffff;
  border-radius: 12px;
  font-size: 0.85rem;
  align-self: flex-start;
  opacity: 0.9;
}
.new_add_pointage .etape.etape2 .days .day .copy-btn:hover {
  opacity: 1;
  background: rgb(25.5, 25.5, 25.5);
}
.new_add_pointage .etape.etape2 .days .day .copy-btn icon {
  font-size: 1rem;
}
.new_add_pointage .etape.etape2 .send {
  color: rgb(229.5, 229.5, 229.5);
  background: #000000;
  padding: 15px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.new_add_pointage .etape.etape2 .send icon {
  color: rgb(229.5, 229.5, 229.5);
}
.new_add_pointage .etape.etape3 .formulaire {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
}
.new_add_pointage .etape.etape3 .formulaire h3 {
  margin-bottom: 10px;
  text-transform: capitalize;
}
.new_add_pointage .etape.etape3 .formulaire .trajet-info {
  background: rgba(0, 136, 206, 0.05);
  padding: 10px 15px;
  border-radius: 10px;
  color: #0088ce;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.new_add_pointage .etape.etape3 .formulaire .trajet-info icon {
  color: #0088ce;
}
.new_add_pointage .etape.etape3 .formulaire .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.new_add_pointage .etape.etape3 .formulaire .checkbox-grid .form-checkbox {
  margin: 0;
  width: 100%;
}
.new_add_pointage .etape .actions {
  position: sticky;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.new_add_pointage .etape .actions button {
  flex: 1;
  max-width: 250px;
}
.new_add_pointage .etape .actions button:first-child {
  background: #dddddd;
  color: #000000;
}

.page_perf {
  max-width: none;
  padding: 0;
  gap: 20px;
}
.page_perf h2 {
  padding: 20px 20px 0 20px;
}
.page_perf form {
  padding: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.page_perf form h3 {
  width: 100%;
}
.page_perf form > div {
  flex: 1 0 200px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #eee;
}
.page_perf form .dates,
.page_perf form .options {
  display: flex;
  gap: 10px;
}
.page_perf form .dates .form-group,
.page_perf form .options .form-group {
  flex: 1 0 max-content;
  max-width: 100%;
}
.page_perf form .dates.options,
.page_perf form .options.options {
  flex-wrap: wrap;
  flex: 100%;
}
.page_perf .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
}
.page_perf .actions button.print {
  flex: 1;
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.page_perf .actions button.print icon {
  color: #0088ce;
}
.page_perf .container-tout-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 30px;
}
.page_perf .container-tout-info .report-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  border: 1px solid;
  padding: 20px;
  border-radius: 20px;
}
.page_perf .container-tout-info .report-wrapper .report-title {
  padding: 10px 20px;
  background: white;
  border-radius: 20px;
  margin: 0;
  font-size: 1.5em;
}
.page_perf .container-tout-info .container-tout-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page_perf .container-tout-info .container-tout-info-grid .chantiers_choice {
  flex: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 20px;
}
.page_perf .container-tout-info .container-tout-info-grid .chantiers_choice .contains-chantiers {
  flex: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: white;
}
.page_perf .container-tout-info .container-tout-info-grid .chantiers_choice .contains-chantiers p {
  padding: 10px;
  border-radius: 10px;
  flex: 1 0 max-content;
  max-width: 100%;
  text-align: center;
  cursor: pointer;
  transition: 0.3s linear;
  background: #f5f5f5;
  align-content: center;
}
.page_perf .container-tout-info .container-tout-info-grid .chantiers_choice .contains-chantiers p:hover {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.page_perf .container-tout-info .container-tout-info-grid .chantiers_choice .contains-chantiers p:hover icon {
  color: #0088ce;
}
.page_perf .container-tout-info .container-tout-info-grid .chantiers_choice .contains-chantiers p icon {
  color: initial;
  padding-right: 20px;
}
.page_perf .container-tout-info .container-tout-info-grid .group {
  flex: 1 1 min(500px, 100%);
  min-width: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 20px;
  background: white;
  border-radius: 20px;
  overflow: auto;
}
.page_perf .container-tout-info .container-tout-info-grid .group.grand {
  flex: 1 0 100%;
}
.page_perf .container-tout-info .container-tout-info-grid .group h3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.page_perf .container-tout-info .container-tout-info-grid .group h3 button {
  background: transparent;
  border: 50%;
  aspect-ratio: 1;
  width: 30px;
  border: 1px solid #dddddd;
  padding: 0;
  flex-shrink: 0;
}
.page_perf .container-tout-info .container-tout-info-grid .group h3 button icon {
  color: #666666;
}
.page_perf .container-tout-info .container-tout-info-grid .group h3 .menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 4px;
  min-width: 160px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page_perf .container-tout-info .container-tout-info-grid .group h3 .menu p {
  cursor: pointer;
  transition: 0.1s ease;
  border-radius: 8px;
  padding: 6px;
}
.page_perf .container-tout-info .container-tout-info-grid .group h3 .menu p:hover {
  background: #eee;
}
.page_perf .container-tout-info .container-tout-info-grid .group .details-incidents {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow: auto;
}
.page_perf .container-tout-info .container-tout-info-grid .group .details-incidents h4 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.page_perf .container-tout-info .container-tout-info-grid .group .details-incidents h4 button {
  background: rgb(229.5, 229.5, 229.5);
  color: #000000;
  padding: 2.5px 20px;
  border-radius: 20px;
}
.page_perf .container-tout-info .container-tout-info-grid .group .details-incidents h4 button icon {
  color: #000000;
}
.page_perf .container-tout-info .container-tout-info-grid .graphique {
  display: flex;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row !important;
  gap: 20px;
  padding: 10px;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 0 110px;
  max-width: 100%;
  background: #fff;
  padding: 20px 15px;
  border-radius: 20px;
  border: 1px solid #eef0f2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .granulo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .granulo-header .taille {
  font-size: 1.1em;
  font-weight: 800;
  color: #000000;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 10px;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .granulo-header .percent {
  font-size: 0.9em;
  font-weight: 700;
  color: #0088ce;
  padding: 4px 8px;
  background: rgba(0, 136, 206, 0.1);
  border-radius: 6px;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .total {
  position: relative;
  height: 200px;
  width: 45px;
  border-radius: 12px;
  background: #f8fafc;
  align-self: center;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .total .produit {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, rgb(0, 152.8349514563, 231.5), #0088ce);
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  justify-content: center;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .total .produit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px 12px 0 0;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .total .produit .produit-value {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: white;
  font-size: 0.8em;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .total .produit .produit-value::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .total .objectif-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique .total .objectif-line span {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7em;
  color: #666666;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.8;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique.max .granulo-header .percent {
  color: #34B233;
  background: rgba(52, 178, 51, 0.1);
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique.max .produit {
  background: linear-gradient(180deg, rgb(57.7903930131, 197.8209606987, 56.6790393013), #34B233);
  border-radius: 12px;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique.max .produit-value {
  background: #34B233;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique.max .produit-value::after {
  border-top-color: #34B233;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique.max .objectif-line span {
  color: #34B233;
}
.page_perf .container-tout-info .container-tout-info-grid .petit-graphique-granulo .graphique-granulo-unique.max .objectif-line::after {
  border-top-color: #34B233;
}
.page_perf .container-tout-info .container-tout-info-grid .tout_info {
  flex: auto;
  gap: 10px;
}
.page_perf .container-tout-info .container-tout-info-grid .tout_info .info {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  flex: 1;
  justify-content: center;
}
.page_perf .container-tout-info .container-tout-info-grid .tout_info .info icon {
  color: initial;
}
.page_perf .container-tout-info .container-tout-info-grid .tout_info .info .result {
  font-weight: 600;
  font-size: 1.2em;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .box-pri {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .box-pri .jauge-pri {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#ffcccc 0deg 135deg, rgb(214.4, 239.6, 214.2) 135deg 180deg, white 180deg);
  transform: rotate(270deg);
  width: 100%;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .box-pri .jauge-pri .aiguille {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 4px;
  height: 40%;
  background: black;
  border-radius: 5px;
  transform-origin: bottom center;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .box-pri .jauge-pri .rond {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: black;
  border-radius: 50%;
  transform: translate(-50%, 50%);
  transform-origin: bottom center;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .box-pri .value {
  text-align: center;
  font-weight: bold;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .details-pri {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #f5f5f5;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .details-pri .flex {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .details-pri p {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .details-pri .pri {
  align-self: center;
}
.page_perf .container-tout-info .container-tout-info-grid .group-pri .details-pri .pri p {
  font-size: 1.2em;
  font-weight: 900;
}
.page_perf .container-tout-info .container-tout-info-grid .group-hot .legendes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.page_perf .container-tout-info .container-tout-info-grid .group-hot .legendes .legende {
  display: flex;
  gap: 5px;
}
.page_perf .container-tout-info .container-tout-info-grid .group-hot .legendes .legende-color {
  width: 40px;
  height: 20px;
  border-radius: 10px;
  flex-shrink: 0;
}
.page_perf .container-tout-info .container-tout-info-grid .group-hot .legendes .legende p {
  font-size: 0.7em;
  color: #666;
  font-weight: 500;
}
.page_perf .container-tout-info .container-tout-info-grid .group-materiaux .totalTonnes {
  text-align: center;
  background: rgb(229.5, 229.5, 229.5);
  color: #000000;
  padding: 5px 30px;
  border-radius: 30px;
  align-self: center;
  font-weight: 600;
  text-transform: uppercase;
}
.page_perf .container-tout-info .container-tout-info-grid .group-materiaux .totalTonnes icon {
  color: #000000;
}
.page_perf .container-tout-info.feuilleA4 {
  border-radius: 0px;
  background: white;
  padding: 0;
  display: block;
}
.page_perf .container-tout-info.feuilleA4 .report-wrapper {
  width: 21cm;
  height: 29.7cm;
  overflow: hidden;
  padding: 0.5cm;
  box-sizing: border-box;
  page-break-after: always;
  max-width: none;
  flex: none;
  border: none;
  border-radius: 0;
}
.page_perf .container-tout-info.feuilleA4 .report-wrapper .report-title {
  text-align: center;
  border-radius: 0;
  background: transparent;
  padding: 0 0 10px 0;
}
.page_perf .container-tout-info.feuilleA4.tout .container-tout-info-grid {
  display: grid;
  height: 100%;
  gap: 5px;
  grid-template-areas: "production info" "production hot" "pri incident" "materiel materiel" "granulo granulo";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto 1fr;
}
.page_perf .container-tout-info.feuilleA4.tout .container-tout-info-grid .petit-graphique-granulo {
  align-self: baseline;
}
.page_perf .container-tout-info.feuilleA4.tout .container-tout-info-grid .contains-canvas {
  height: 200px !important;
}
.page_perf .container-tout-info.feuilleA4.product .container-tout-info-grid {
  display: grid;
  grid-template-areas: "production info" "production hot" "granulo granulo" "pri 0";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto 1fr;
}
.page_perf .container-tout-info.feuilleA4.product .container-tout-info-grid .group-pri {
  align-self: baseline;
}
.page_perf .container-tout-info.feuilleA4.incident .container-tout-info-grid {
  display: grid;
  grid-template-areas: "materiel materiel" "incident incident" "pri hot";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
}
.page_perf .container-tout-info.feuilleA4.incident .container-tout-info-grid .group-pri,
.page_perf .container-tout-info.feuilleA4.incident .container-tout-info-grid .group-hot {
  align-self: baseline;
}
.page_perf .container-tout-info.feuilleA4.materiaux .container-tout-info-grid {
  display: flex;
  flex-direction: column;
}
.page_perf .container-tout-info.feuilleA4.materiels .container-tout-info-grid {
  display: grid;
  grid-template-areas: "tableauMateriel tableauMateriel" "consommations pannes" "materiel materiel";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
}
.page_perf .container-tout-info.feuilleA4.materiels .container-tout-info-grid .tableauMateriel {
  zoom: 0.45;
}
.page_perf .container-tout-info.feuilleA4.materiels .container-tout-info-grid .group_materiel {
  align-self: baseline;
}
.page_perf .container-tout-info.feuilleA4 .group {
  zoom: 0.55;
  flex: none;
  border: 1px solid #ddd;
  overflow: hidden;
}
.page_perf .container-tout-info.feuilleA4 .group h3 button {
  display: none;
}
.page_perf .container-tout-info.feuilleA4 .group.tout_info {
  flex-direction: row;
  flex-wrap: wrap;
}
.page_perf .container-tout-info.feuilleA4 .group.group-hot .contains {
  display: flex;
}
.page_perf .container-tout-info.feuilleA4 .group.group-hot .contains .contains-chart {
  width: 70%;
}
.page_perf .container-tout-info.feuilleA4 .group.group-hot .contains .legendes {
  flex-direction: column;
}
.page_perf .container-tout-info.feuilleA4 .chantiers_choice {
  display: none;
}

.rapport_question form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-self: center;
  width: 100%;
}
.rapport_question form .different_arrets {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.rapport_question form .different_arrets .un_arret {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #dddddd;
}
.rapport_question form .different_arrets .un_arret .delete {
  background: rgb(255, 229.5, 229.5);
  color: #FF0000;
}
.rapport_question form .different_arrets .un_arret .delete icon {
  color: #FF0000;
}
.rapport_question form .btn_add {
  background: rgb(229.5, 243.1, 250.1);
  color: #0088ce;
}
.rapport_question form .btn_add icon {
  color: #0088ce;
}

.popup_draft_actions .container {
  max-width: 500px;
  width: 100%;
}
.popup_draft_actions .container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.popup_draft_actions .container .grid_select_actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.popup_draft_actions .container .grid_select_actions button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  border-radius: 12px;
}
.popup_draft_actions .container .grid_select_actions button.btn_modifier {
  background: #0088ce;
}
.popup_draft_actions .container .grid_select_actions button.btn_modifier:hover {
  background: rgb(0, 102.3300970874, 155);
}
.popup_draft_actions .container .grid_select_actions button.btn_supprimer {
  background: #000000;
}
.popup_draft_actions .container .grid_select_actions button.btn_supprimer:hover {
  background: #333333;
}

.dashboard-chantier {
  gap: 30px !important;
}
.dashboard-chantier .dashboard-header {
  background: #ffffff;
  padding: 24px;
  border-left: 5px solid #FF0000;
}
.dashboard-chantier .dashboard-header h2 {
  margin-bottom: 5px;
}
.dashboard-chantier .dashboard-header .chantier-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 0.9rem;
}
.dashboard-chantier .dashboard-header .chantier-location icon {
  color: #666666;
}
.dashboard-chantier .kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  width: 100%;
}
.dashboard-chantier .kpi-grid .kpi-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  border: 1px solid #f5f5f5;
}
.dashboard-chantier .kpi-grid .kpi-card:hover {
  transform: translateY(-5px);
}
.dashboard-chantier .kpi-grid .kpi-card .kpi-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-chantier .kpi-grid .kpi-card .kpi-icon icon {
  font-size: 1.8rem;
}
.dashboard-chantier .kpi-grid .kpi-card.red .kpi-icon {
  background: rgb(255, 191.25, 191.25);
}
.dashboard-chantier .kpi-grid .kpi-card.red .kpi-icon icon {
  color: #FF0000;
}
.dashboard-chantier .kpi-grid .kpi-card.blue .kpi-icon {
  background: rgb(191.25, 225.25, 242.75);
}
.dashboard-chantier .kpi-grid .kpi-card.blue .kpi-icon icon {
  color: #0088ce;
}
.dashboard-chantier .kpi-grid .kpi-card.yellow .kpi-icon {
  background: rgb(254.75, 243.5, 191.25);
}
.dashboard-chantier .kpi-grid .kpi-card.yellow .kpi-icon icon {
  color: rgb(152, 125.0708661417, 0);
}
.dashboard-chantier .kpi-grid .kpi-card.green .kpi-icon {
  background: rgb(204.25, 235.75, 204);
}
.dashboard-chantier .kpi-grid .kpi-card.green .kpi-icon icon {
  color: #34B233;
}
.dashboard-chantier .kpi-grid .kpi-card .kpi-value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.dashboard-chantier .kpi-grid .kpi-card .kpi-value small {
  font-size: 0.9rem;
  color: #666666;
}
.dashboard-chantier .kpi-grid .kpi-card .kpi-label {
  font-size: 0.85rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dashboard-chantier .dashboard-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.dashboard-chantier .dashboard-card .filter-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.dashboard-chantier .dashboard-card .filter-flex .filter-group {
  flex: 1 250px;
}
.dashboard-chantier .dashboard-card .filter-flex .filter-group .inputs-range {
  display: flex;
  gap: 10px;
}
.dashboard-chantier .chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.dashboard-chantier .chips-grid .chip-toggle {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.dashboard-chantier .chips-grid .chip-toggle:hover {
  background: rgb(232.25, 232.25, 232.25);
}
.dashboard-chantier .chips-grid .chip-toggle.active {
  background: #000000;
  color: #ffffff;
}
.dashboard-chantier .table-responsive {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow-x: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.dashboard-chantier table {
  border: none;
  width: 100%;
  font-size: 0.8rem;
}
.dashboard-chantier table thead th {
  background: #f8f9fa;
  color: #000000;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 15px 10px;
}
.dashboard-chantier table tbody td {
  padding: 12px 10px;
  font-size: 0.9rem;
}
.dashboard-chantier table .highlight {
  font-weight: 700;
}
.dashboard-chantier table .row-total.global-total {
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dashboard-chantier table .row-total.row-average {
  font-size: 0.85rem;
}
.dashboard-chantier table .cell-arrets-table {
  padding: 0;
}
.dashboard-chantier table .cell-arrets-table thead {
  z-index: 0;
}
.dashboard-chantier table .sticky-col {
  position: sticky;
  left: 0;
  background: white;
  z-index: 1;
}
.dashboard-chantier table .cell-commentaires {
  font-size: 0.8rem;
  color: rgb(76.5, 76.5, 76.5);
  min-width: 200px;
  max-width: 400px;
  white-space: normal !important;
}
.dashboard-chantier .actions-bar {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.dashboard-chantier .actions-bar button {
  border-radius: 12px;
}
.dashboard-chantier .actions-bar button.btn-pdf {
  background: #FF0000;
}
.dashboard-chantier .actions-bar button.btn-excel {
  background: rgb(40.4192139738, 138.3580786026, 39.6419213974);
}
.dashboard-chantier .actions-bar button.btn-client {
  background: #0088ce;
}

/* TIMELINE */
.timeline-subheader {
  margin-bottom: 30px;
  padding: 0 10px;
}
.timeline-subheader.modern .chantier-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline-subheader.modern .chantier-info h2 {
  margin: 0;
  color: #000000;
}
.timeline-subheader.modern .chantier-info .dates {
  display: flex;
  align-items: center;
  gap: 15px;
}
.timeline-subheader.modern .chantier-info .dates .tag {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666666;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #dddddd;
}
.timeline-subheader.modern .chantier-info .dates icon {
  color: #666666;
  font-size: 1.2rem;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  position: relative;
}
.timeline-container.modern {
  gap: 30px;
}
.timeline-container.modern::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 29px;
  width: 2px;
  background: linear-gradient(to bottom, #ffffff 0%, #dddddd 10%, #dddddd 90%, #ffffff 100%);
  z-index: 0;
}
.timeline-container.modern .timeline-item {
  position: relative;
  padding-left: 60px;
  z-index: 1;
}
.timeline-container.modern .timeline-item .timeline-marker {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 4px solid #0088ce;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(0, 136, 206, 0.2);
}
.timeline-container.modern .timeline-item .timeline-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(221, 221, 221, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideIn 0.4s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.timeline-container.modern .timeline-item .timeline-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.timeline-container.modern .timeline-item .timeline-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(to right, #fcfcfc, #ffffff);
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}
.timeline-container.modern .timeline-item .timeline-card .card-header .date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding-right: 20px;
  border-right: 2px solid #FF0000;
}
.timeline-container.modern .timeline-item .timeline-card .card-header .date-badge .day {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000000;
}
.timeline-container.modern .timeline-item .timeline-card .card-header .date-badge .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #FF0000;
}
.timeline-container.modern .timeline-item .timeline-card .card-header .meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}
.timeline-container.modern .timeline-item .timeline-card .card-header .meta .weekday {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #000000;
}
.timeline-container.modern .timeline-item .timeline-card .card-header .meta .author {
  font-size: 0.85rem;
  color: #666666;
  font-weight: 500;
}
.timeline-container.modern .timeline-item .timeline-card .card-body {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-gallery.single {
  grid-template-columns: 1fr;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-gallery.single img {
  height: 200px;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.2s;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-gallery img:hover {
  transform: scale(1.05);
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-gallery .more-images {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 8px;
  height: 100px;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box,
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border-radius: 10px;
  gap: 15px;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .icon-box,
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .content-box,
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .content-box {
  flex: 1;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .content-box h4,
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .content-box h4 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  font-weight: 700;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .content-box ul,
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .content-box ul {
  margin: 0;
  padding-left: 15px;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .content-box ul li,
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .content-box ul li {
  margin-bottom: 2px;
  font-size: 0.9rem;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .content-box p,
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .content-box p {
  margin: 0;
  font-size: 0.95rem;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box {
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.1);
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .icon-box {
  background: rgba(255, 0, 0, 0.1);
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .icon-box icon {
  color: #FF0000;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .alert-box .content-box h4 {
  color: #FF0000;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box {
  background: rgba(0, 136, 206, 0.05);
  border: 1px solid rgba(0, 136, 206, 0.1);
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .icon-box {
  background: rgba(0, 136, 206, 0.1);
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .icon-box icon {
  color: #0088ce;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .info-box .content-box h4 {
  color: #0088ce;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .comment-box {
  background: #f5f5f5;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .comment-box icon {
  color: #666666;
  font-size: 1.5rem;
}
.timeline-container.modern .timeline-item .timeline-card .card-body .timeline-content .comment-box p {
  font-style: italic;
  color: rgb(76.5, 76.5, 76.5);
  font-size: 1rem;
  margin: 0;
}
.timeline-container.modern .timeline-item .timeline-card .card-footer {
  padding: 15px 25px;
  border-top: 1px solid rgba(221, 221, 221, 0.3);
  text-align: right;
}
.timeline-container.modern .timeline-item .timeline-card .card-footer button.unstyle {
  background: transparent;
  color: #0088ce;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s;
}
.timeline-container.modern .timeline-item .timeline-card .card-footer button.unstyle:hover {
  background: rgba(0, 136, 206, 0.05);
  transform: translateX(5px);
}

/* ACTION GRID (INFO CHANTIER) */
.box_actions_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
.box_actions_grid .action-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.box_actions_grid .action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.box_actions_grid .action-card .icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}
.box_actions_grid .action-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}
.box_actions_grid .action-card .text-wrapper h3 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  font-weight: 700;
}
.box_actions_grid .action-card .text-wrapper p {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
  line-height: 1.3;
}
.box_actions_grid .action-card.bleu {
  background: rgba(0, 136, 206, 0.05);
}
.box_actions_grid .action-card.bleu .icon-wrapper {
  background: #0088ce;
  color: #ffffff;
}
.box_actions_grid .action-card.bleu h3 {
  color: #0088ce;
}
.box_actions_grid .action-card.bleu:hover {
  border-color: #0088ce;
}
.box_actions_grid .action-card.vert {
  background: rgba(52, 178, 51, 0.05);
}
.box_actions_grid .action-card.vert .icon-wrapper {
  background: #34B233;
  color: #ffffff;
}
.box_actions_grid .action-card.vert h3 {
  color: #34B233;
}
.box_actions_grid .action-card.vert:hover {
  border-color: #34B233;
}
.box_actions_grid .action-card.rouge {
  background: rgba(255, 0, 0, 0.05);
}
.box_actions_grid .action-card.rouge .icon-wrapper {
  background: #FF0000;
  color: #ffffff;
}
.box_actions_grid .action-card.rouge h3 {
  color: #FF0000;
}
.box_actions_grid .action-card.rouge:hover {
  border-color: #FF0000;
}
.box_actions_grid .action-card.noir {
  background: rgba(0, 0, 0, 0.05);
}
.box_actions_grid .action-card.noir .icon-wrapper {
  background: #000000;
  color: #ffffff;
}
.box_actions_grid .action-card.noir h3 {
  color: #000000;
}
.box_actions_grid .action-card.noir:hover {
  border-color: #000000;
}
.box_actions_grid .action-card.has-draft {
  border: 2px solid #FED100;
}
.box_actions_grid .action-card.has-draft .draft-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FED100;
  color: #000000;
  font-size: 0.6rem;
  padding: 2px 6px;
  font-weight: 800;
  border-radius: 4px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

.secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  border-top: 1px solid #dddddd;
  padding-top: 20px;
}
.secondary-actions button {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.secondary-actions button icon {
  font-size: 1.1rem;
  transition: color 0.2s;
}
.secondary-actions button.btn-secondary {
  background: #f5f5f5;
  color: #000000;
}
.secondary-actions button.btn-secondary icon {
  color: #666666;
}
.secondary-actions button.btn-secondary:hover {
  background: rgb(232.25, 232.25, 232.25);
}
.secondary-actions button.btn-edit:hover {
  background: rgba(0, 136, 206, 0.1);
  color: #0088ce;
  border-color: rgba(0, 136, 206, 0.2);
}
.secondary-actions button.btn-edit:hover icon {
  color: #0088ce;
}
.secondary-actions button.btn-archive:hover {
  background: rgba(255, 140, 0, 0.1);
  color: #cc7000;
  border-color: rgba(255, 140, 0, 0.2);
}
.secondary-actions button.btn-archive:hover icon {
  color: #FF8C00;
}
.secondary-actions button.btn-unarchive:hover {
  background: rgba(52, 178, 51, 0.1);
  color: rgb(40.4192139738, 138.3580786026, 39.6419213974);
  border-color: rgba(52, 178, 51, 0.2);
}
.secondary-actions button.btn-unarchive:hover icon {
  color: #34B233;
}
.secondary-actions button.btn-danger {
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
}
.secondary-actions button.btn-danger icon {
  color: #FF0000;
}
.secondary-actions button.btn-danger:hover {
  background: #FF0000;
  color: #ffffff;
}
.secondary-actions button.btn-danger:hover icon {
  color: #ffffff;
}
.secondary-actions button.btn-finish {
  background: #000000;
  color: #FED100;
}
.secondary-actions button.btn-finish icon {
  color: #FED100;
}
.secondary-actions button.btn-finish:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page_lieux_personne h2 {
  text-align: center;
  margin: 40px 0;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 2rem;
}
.page_lieux_personne h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #FF0000, #cc0000);
  border-radius: 10px;
}
.page_lieux_personne .filters-lieux {
  margin: 0 auto 50px;
  max-width: 1100px;
  background: #ffffff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(221, 221, 221, 0.1);
}
.page_lieux_personne .filters-lieux .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(221, 221, 221, 0.2);
}
.page_lieux_personne .filters-lieux .filter-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
}
.page_lieux_personne .filters-lieux .filter-header h3::after {
  display: none;
}
.page_lieux_personne .filters-lieux .filter-header .print-btn {
  background: #000000;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.page_lieux_personne .filters-lieux .filter-header .print-btn icon {
  color: #ffffff;
  font-size: 1.3rem;
}
.page_lieux_personne .filters-lieux .filter-header .print-btn:hover {
  background: #FF0000;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}
.page_lieux_personne .filters-lieux .dates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.container-rapport-lieux {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 30px;
  padding: 20px;
}
@media (max-width: 500px) {
  .container-rapport-lieux {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}
.container-rapport-lieux .no-result {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px;
  background: #ffffff;
  border-radius: 20px;
  color: #666666;
  border: 1px dashed #dddddd;
}
.container-rapport-lieux .rapport-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
  break-inside: avoid;
  page-break-inside: avoid;
}
.container-rapport-lieux .rapport-card h3 {
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid #f1f5f9;
}
.container-rapport-lieux .rapport-card h3::after {
  display: none;
}
.container-rapport-lieux .rapport-card h3::before {
  content: "person";
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  user-select: none;
  vertical-align: middle;
  color: #0088ce;
  font-size: 1.6rem;
}
.container-rapport-lieux .rapport-card table {
  width: 100%;
  border-collapse: collapse;
}
.container-rapport-lieux .rapport-card table thead th {
  background: #f8fafc !important;
  color: #64748b !important;
  padding: 12px;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e2e8f0;
}
.container-rapport-lieux .rapport-card table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: #334155;
}
.container-rapport-lieux .rapport-card table tbody td:first-child {
  font-weight: 600;
  color: #0088ce;
  text-transform: capitalize;
}
.container-rapport-lieux .rapport-card table tbody td:last-child {
  font-weight: 500;
}
.container-rapport-lieux .rapport-card table tbody tr:last-child td {
  border-bottom: none;
}
.container-rapport-lieux .rapport-card table tbody tr:hover td {
  background: #f8fafc;
}

@media print {
  .no-print,
  nav,
  header,
  .filter-header,
  .filters-lieux {
    display: none !important;
  }
  body {
    background: white !important;
  }
  .page_lieux_personne,
  .print_pdf {
    padding: 0 !important;
    background: white !important;
    gap: 0 !important;
  }
  .page_lieux_personne h2,
  .print_pdf h2 {
    margin: 0 0 10px 0 !important;
    padding: 20px 0 0 0 !important;
    display: block !important;
    break-after: avoid;
    page-break-after: avoid;
  }
  .page_lieux_personne .print-period,
  .print_pdf .print-period {
    font-size: 1.1rem;
    color: #666666;
    text-align: center;
    margin: 0 0 30px 0 !important;
    font-weight: 600;
    font-style: italic;
    break-after: avoid;
    page-break-after: avoid;
  }
  .page_lieux_personne .container-rapport-lieux,
  .print_pdf .container-rapport-lieux {
    display: block !important;
    padding: 0 !important;
  }
  .page_lieux_personne .container-rapport-lieux .rapport-card,
  .print_pdf .container-rapport-lieux .rapport-card {
    box-shadow: none !important;
    border: 2px solid #f0f0f0 !important;
    margin-bottom: 40px !important;
    padding: 25px !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .page_lieux_personne .container-rapport-lieux .rapport-card h3,
  .print_pdf .container-rapport-lieux .rapport-card h3 {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
    break-after: avoid;
    page-break-after: avoid;
  }
  .page_lieux_personne .container-rapport-lieux .rapport-card table,
  .print_pdf .container-rapport-lieux .rapport-card table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    page-break-inside: auto !important;
    break-inside: auto !important;
  }
  .page_lieux_personne .container-rapport-lieux .rapport-card table thead th,
  .print_pdf .container-rapport-lieux .rapport-card table thead th {
    background: #f0f0f0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .page_lieux_personne .container-rapport-lieux .rapport-card table td,
  .page_lieux_personne .container-rapport-lieux .rapport-card table th,
  .print_pdf .container-rapport-lieux .rapport-card table td,
  .print_pdf .container-rapport-lieux .rapport-card table th {
    padding: 12px !important;
    font-size: 0.9rem !important;
  }
  .page_lieux_personne .container-rapport-lieux .rapport-card .table-container,
  .page_lieux_personne .container-rapport-lieux .rapport-card .table,
  .print_pdf .container-rapport-lieux .rapport-card .table-container,
  .print_pdf .container-rapport-lieux .rapport-card .table {
    page-break-inside: auto !important;
    break-inside: auto !important;
    overflow: visible !important;
    display: block !important;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Boitron Workflow Styles (Simplified & Modern) */
.boitron-workflow-wrapper {
  padding: 30px 10px;
  background: #fdfdfd;
  border-radius: 30px;
  margin: 20px 0;
}

.boitron-process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
.boitron-process-flow::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 4px;
  background: rgba(0, 136, 206, 0.1);
  transform: translateX(-50%);
  z-index: 1;
}
.boitron-process-flow .flow-step {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 20px;
  z-index: 2;
}
.boitron-process-flow .flow-step .step-center .machine-node-btn {
  background: #ffffff;
  border: 2px solid #0088ce;
  padding: 12px 20px;
  border-radius: 18px;
  min-width: 140px;
  box-shadow: 0 10px 20px rgba(0, 136, 206, 0.1);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.boitron-process-flow .flow-step .step-center .machine-node-btn strong {
  font-size: 1rem;
  color: #0088ce;
}
.boitron-process-flow .flow-step .step-center .machine-node-btn .sub {
  font-size: 0.7rem;
  color: #666666;
  font-weight: 500;
}
.boitron-process-flow .flow-step .step-center .machine-node-btn:hover {
  transform: scale(1.05);
  border-color: #FF0000;
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.15);
}
.boitron-process-flow .flow-step .step-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.boitron-process-flow .flow-step .step-side.left {
  align-items: flex-end;
  text-align: right;
}
.boitron-process-flow .flow-step .step-side.right {
  align-items: flex-start;
  text-align: left;
}
.boitron-process-flow .flow-step .step-side .side-label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 2px;
  opacity: 0.6;
}
.boitron-process-flow .flow-step .step-side .granite-box-micro {
  background: rgba(0, 136, 206, 0.05);
  border: 1px solid rgba(0, 136, 206, 0.1);
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000000;
  min-width: 50px;
  text-align: center;
}
.boitron-process-flow .flow-step .step-side .granite-box-micro.secondary {
  background: rgba(52, 178, 51, 0.05);
  border-color: rgba(52, 178, 51, 0.1);
}

@media (max-width: 800px) {
  .boitron-process-flow .flow-step {
    flex-direction: column;
    gap: 10px;
  }
  .boitron-process-flow .flow-step .step-side {
    align-items: center !important;
    text-align: center !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .boitron-process-flow .flow-step .step-side .side-label {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .boitron-scheme {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 60px;
  }
  .boitron-scheme .scheme-item {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .boitron-scheme .pos-hp100-top-boxes {
    transform: none;
    position: relative;
  }
}
.header-with-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.header-with-actions .config-switcher {
  display: flex;
  gap: 10px;
  background: #f5f5f5;
  padding: 5px;
  border-radius: 15px;
}
.header-with-actions .config-switcher .config-btn-mini {
  padding: 8px 15px;
  font-size: 0.8rem;
  border-radius: 10px;
  background: transparent;
  color: #666666;
  box-shadow: none;
  font-weight: 600;
}
.header-with-actions .config-switcher .config-btn-mini.active {
  background: #0088ce;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 136, 206, 0.2);
}
.header-with-actions .config-switcher .config-btn-mini:hover:not(.active) {
  background: rgba(0, 136, 206, 0.1);
}

.config-manager-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px 40px;
}

.manager-header-actions {
  display: flex;
  justify-content: flex-end;
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 15px;
}
.manager-header-actions .add-config-btn {
  background: #ffffff;
  color: #34B233;
  border: 2px solid #34B233;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.manager-header-actions .add-config-btn:hover {
  background: #34B233;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 178, 51, 0.2);
}

.config-manager-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}
.config-manager-list .config-manager-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.config-manager-list .config-manager-item.active-config {
  border: 2px solid #0088ce;
  position: relative;
}
.config-manager-list .config-manager-item.active-config::after {
  content: "ACTIVE";
  position: absolute;
  top: -12px;
  right: 25px;
  background: #0088ce;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 10px;
}
.config-manager-list .config-manager-item .item-header {
  margin-bottom: 25px;
}
.config-manager-list .config-manager-item .item-header .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.config-manager-list .config-manager-item .item-header .config-name-input {
  font-size: 1.2rem;
  font-weight: 800;
  color: #666666;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  width: 100%;
  padding: 5px 0;
}
.config-manager-list .config-manager-item .item-header .config-name-input:focus {
  border-bottom-color: #0088ce;
  outline: none;
}
.config-manager-list .config-manager-item .item-header .status-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}
.config-manager-list .config-manager-item .item-header .status-badge.active {
  background: rgba(0, 136, 206, 0.1);
  color: #0088ce;
}
.config-manager-list .config-manager-item .item-header .status-badge.inactive {
  background: #f5f5f5;
  color: #666666;
}
.config-manager-list .config-manager-item .item-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.config-manager-list .config-manager-item .item-form .form-group-mini .group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #666666;
  font-size: 0.85rem;
  font-weight: 600;
}
.config-manager-list .config-manager-item .item-form .form-group-mini .group-label icon {
  font-size: 1.1rem;
  color: #0088ce;
  opacity: 0.7;
}
.config-manager-list .config-manager-item .item-form .form-group-mini .inputs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.config-manager-list .config-manager-item .item-form .form-group-mini .inputs-row .mini-input-token {
  background: #f5f5f5;
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0088ce;
}
.config-manager-list .config-manager-item .item-form .form-group-mini .inputs-row .mini-input-token:focus {
  background: #ffffff;
  border-color: #0088ce;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 136, 206, 0.1);
}
.config-manager-list .config-manager-item .item-footer-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.config-manager-list .config-manager-item .item-footer-actions .save-btn {
  flex: 1.5;
  background: #0088ce;
  color: #ffffff;
  padding: 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 136, 206, 0.2);
}
.config-manager-list .config-manager-item .item-footer-actions .activate-btn {
  flex: 1;
  background: rgba(0, 136, 206, 0.05);
  color: #0088ce;
  padding: 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.config-manager-list .config-manager-item .item-footer-actions .activate-btn:hover {
  background: #0088ce;
  color: #ffffff;
}
.config-manager-list .config-manager-item .item-footer-actions .delete-btn-mini {
  background: rgba(255, 0, 0, 0.05);
  color: #FF0000;
  padding: 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.config-manager-list .config-manager-item .item-footer-actions .delete-btn-mini:hover {
  background: #FF0000;
  color: #ffffff;
}

@media (max-width: 600px) {
  .config-manager-list {
    grid-template-columns: 1fr;
  }
}
@keyframes pulse-machine {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 102, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
  }
}
.highlight-machine {
  animation: pulse-machine 2s infinite;
  border-color: #0066cc !important;
  background: rgba(0, 102, 204, 0.05) !important;
}

.config-manager-item .item-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  background: #fcfcfc;
  border-radius: 12px;
  margin: 15px 0;
}
.config-manager-item .form-group-mini .group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #4a5568;
  font-weight: 700;
  font-size: 0.95rem;
}
.config-manager-item .form-group-mini .group-label icon {
  font-size: 1.2rem !important;
  color: #FF0000;
}
.config-manager-item .form-group-mini .inputs-rows-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 500px) {
  .config-manager-item .form-group-mini .inputs-rows-container {
    grid-template-columns: 1fr;
  }
}
.config-manager-item .form-group-mini .dual-input-row {
  display: grid !important;
  grid-template-columns: 1fr 28px 12px 28px !important;
  align-items: center !important;
  background: white !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  height: 28px !important;
  box-sizing: border-box !important;
}
.config-manager-item .form-group-mini .dual-input-row:focus-within {
  border-color: #FF0000 !important;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1) !important;
}
.config-manager-item .form-group-mini .dual-input-row input {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: inherit !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
}
.config-manager-item .form-group-mini .dual-input-row .input-label-mini {
  padding-left: 6px !important;
  font-weight: 700 !important;
  color: #000000 !important;
  font-size: 0.72rem !important;
  text-overflow: ellipsis;
}
.config-manager-item .form-group-mini .dual-input-row .input-pct-mini {
  border-left: 1px solid #f0f0f0 !important;
  text-align: right !important;
  color: #FF0000 !important;
  font-weight: 800 !important;
  font-size: 0.75rem !important;
  appearance: none;
  -moz-appearance: textfield !important;
}
.config-manager-item .form-group-mini .dual-input-row .input-pct-mini::-webkit-outer-spin-button, .config-manager-item .form-group-mini .dual-input-row .input-pct-mini::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.config-manager-item .form-group-mini .dual-input-row .pct-symbol {
  text-align: center !important;
  color: #FF0000 !important;
  font-weight: 700 !important;
  font-size: 0.65rem !important;
  opacity: 0.8 !important;
  padding-right: 2px !important;
}
.config-manager-item .form-group-mini .dual-input-row .remove-row-btn {
  background: transparent !important;
  color: #cbd5e0 !important;
  padding: 0 !important;
  border: none !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  border-left: 1px solid #f0f0f0 !important;
}
.config-manager-item .form-group-mini .dual-input-row .remove-row-btn icon {
  font-size: 1rem !important;
  color: inherit !important;
}
.config-manager-item .form-group-mini .dual-input-row .remove-row-btn:hover {
  background: rgba(255, 0, 0, 0.1) !important;
  color: #FF0000 !important;
}
.config-manager-item .group-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.config-manager-item .group-label .group-actions {
  display: flex;
  gap: 5px;
}
.config-manager-item .group-label .group-actions .clear-all-btn {
  background: rgba(255, 0, 0, 0.05);
  color: #FF0000;
  padding: 4px;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.config-manager-item .group-label .group-actions .clear-all-btn:hover {
  background: #FF0000;
  color: #ffffff;
}
.config-manager-item .group-label .group-actions .clear-all-btn icon {
  font-size: 1.1rem;
}
.config-manager-item .group-footer {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-start;
  margin-top: 5px;
}
.config-manager-item .group-footer .add-row-btn {
  background: rgba(0, 136, 206, 0.05);
  color: #0088ce;
  border: 1px dashed rgba(0, 136, 206, 0.3);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.config-manager-item .group-footer .add-row-btn:hover {
  background: rgba(0, 136, 206, 0.1);
  border-style: solid;
  transform: translateY(-1px);
}
.config-manager-item .group-footer .add-row-btn icon {
  font-size: 1rem;
}
.config-manager-item .item-form {
  padding: 12px !important;
  gap: 15px !important;
}
.config-manager-item .form-group-mini .group-label {
  font-size: 0.8rem !important;
  margin-bottom: 8px !important;
}
.config-manager-item .inputs-rows-container {
  gap: 6px !important;
}
.config-manager-item .status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.config-manager-item .status-badge.active {
  background: #c6f6d5;
  color: #22543d;
}
.config-manager-item .status-badge.inactive {
  background: #edf2f7;
  color: #4a5568;
}

.boitron-workflow-wrapper {
  margin: 30px 0;
  padding: 30px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: visible;
}
.boitron-workflow-wrapper .schema-global-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1.5px solid #f1f5f9;
}
.boitron-workflow-wrapper .schema-global-header .header-texts h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.5px;
}
.boitron-workflow-wrapper .schema-global-header .header-texts p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}
.boitron-workflow-wrapper .schema-global-header .global-delete-btn {
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid #fee2e2;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 750;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.05);
}
.boitron-workflow-wrapper .schema-global-header .global-delete-btn:hover {
  background: #ef4444;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.3);
  border-color: #ef4444;
}
.boitron-workflow-wrapper .schema-global-header .global-delete-btn icon {
  font-size: 1.1rem;
}
.boitron-workflow-wrapper .boitron-process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: auto;
}
.boitron-workflow-wrapper .boitron-process-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(to bottom, #f1f5f9, #0088ce 15%, #0088ce 85%, #f1f5f9);
  z-index: 0;
  opacity: 0.2;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  align-items: center;
  gap: 20px;
  z-index: 1;
  position: relative;
  padding: 15px 0;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side.left {
  align-items: flex-end;
  padding-right: 20px;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side.right {
  align-items: flex-start;
  padding-left: 20px;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side .side-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side .granite-box-micro {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #334155;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  transition: all 0.2s;
  position: relative;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side .granite-box-micro::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 1px;
  background: #cbd5e1;
  pointer-events: none;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side.left .granite-box-micro::before {
  right: -15px;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side.right .granite-box-micro::before {
  left: -15px;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn {
  width: 170px;
  padding: 18px 12px;
  border-radius: 20px;
  background: white;
  border: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 2;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn strong {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn .sub {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: #0088ce;
  box-shadow: 0 15px 30px -10px rgba(0, 136, 206, 0.25);
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn.node-filled {
  border-color: #10b981;
  background: #ecfdf5;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn.node-filled strong {
  color: #065f46;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn.node-filled .sub {
  color: #059669;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn.node-filled::after {
  content: "check_circle";
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  user-select: none;
  vertical-align: middle;
  position: absolute;
  aspect-ratio: 1;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -12px;
  right: -5px;
  background: white;
  color: #10b981;
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn .fill-check {
  display: none;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .node-delete-btn {
  position: absolute;
  right: -45px;
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444 !important;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 68, 68, 0.15);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
  opacity: 0.6;
  box-shadow: none;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .node-delete-btn:hover {
  opacity: 1;
  background: #ef4444;
  color: white !important;
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .node-delete-btn:hover icon {
  color: white !important;
}
.boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .node-delete-btn icon {
  font-size: 1.2rem !important;
  color: #FF0000;
}

@keyframes popIn {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}
.quick-entry-popup .container {
  max-width: 480px !important;
  border-radius: 24px !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  border: none !important;
  overflow: hidden;
}
.quick-entry-popup .content {
  padding: 30px !important;
}
.quick-entry-popup .content h2 {
  margin: 0 0 20px 0;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quick-entry-popup .content h2::before {
  content: "";
  width: 6px;
  height: 24px;
  background: #FF0000;
  border-radius: 3px;
}
.quick-entry-popup .quick-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quick-entry-popup .quick-form .form-group-quick {
  background: #f8fafc;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s;
}
.quick-entry-popup .quick-form .form-group-quick:focus-within {
  border-color: #FF0000;
}
.quick-entry-popup .quick-form .dispersion-info {
  background: #fffbef;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #fef3c7;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.quick-entry-popup .quick-form .dispersion-info .info-title {
  font-weight: 800;
  color: #92400e;
  margin-bottom: 12px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quick-entry-popup .quick-form .dispersion-info .info-title::before {
  content: "insights";
  font-family: "Material Icons Outlined";
  font-size: 1.2rem;
}
.quick-entry-popup .quick-form .dispersion-info .split-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  font-size: 1rem;
}
.quick-entry-popup .quick-form .dispersion-info .split-row:last-child {
  border-bottom: none;
}
.quick-entry-popup .quick-form .dispersion-info .split-row .label {
  color: #78350f;
  font-weight: 500;
}
.quick-entry-popup .quick-form .dispersion-info .split-row .val {
  font-weight: 800;
  color: #000000;
}
.quick-entry-popup .quick-form button.btn-primary {
  margin-top: 15px;
  height: 52px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  background: #0088ce;
  color: white;
  border-radius: 14px;
  box-shadow: 0 8px 20px -5px rgba(0, 136, 206, 0.3);
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.quick-entry-popup .quick-form button.btn-primary:hover {
  background: rgb(0, 119.1650485437, 180.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -5px rgba(0, 136, 206, 0.4);
}
.quick-entry-popup .quick-form button.btn-primary:active {
  transform: translateY(0);
}
.quick-entry-popup .quick-form .delete-report-btn {
  background: rgba(255, 0, 0, 0.04);
  color: #FF0000 !important;
  border: 1px solid rgba(255, 0, 0, 0.15);
  padding: 12px;
  border-radius: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  transition: all 0.2s;
  font-size: 0.9rem;
  box-shadow: none;
}
.quick-entry-popup .quick-form .delete-report-btn icon {
  font-size: 1.2rem;
  color: inherit !important;
}
.quick-entry-popup .quick-form .delete-report-btn:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
  transform: translateY(-1px);
}
.quick-entry-popup .quick-form .delete-report-btn:active {
  transform: translateY(0);
}

@media (max-width: 500px) {
  .boitron-workflow-wrapper {
    padding: 15px 10px;
    margin: 15px 0;
  }
  .boitron-workflow-wrapper .boitron-process-flow {
    gap: 12px;
  }
  .boitron-workflow-wrapper .boitron-process-flow::before {
    left: 45px;
    transform: none;
  }
  .boitron-workflow-wrapper .boitron-process-flow .flow-step {
    justify-content: flex-start;
    padding-left: 20px;
    gap: 12px;
  }
  .boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side.left {
    display: none;
  }
  .boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side.right {
    flex: 1;
    display: flex;
  }
  .boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side.right .side-label {
    font-size: 0.65rem;
  }
  .boitron-workflow-wrapper .boitron-process-flow .flow-step .step-side.right .granite-box-micro {
    padding: 3px 6px;
    font-size: 0.75rem;
  }
  .boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn {
    width: 120px;
    padding: 12px 8px;
    border-radius: 14px;
  }
  .boitron-workflow-wrapper .boitron-process-flow .flow-step .step-center .machine-node-btn strong {
    font-size: 0.95rem;
  }
  .quick-entry-popup .container {
    width: 95% !important;
    margin: 0 auto;
  }
  .quick-entry-popup .content {
    padding: 20px !important;
  }
}

/*# sourceMappingURL=style.css.map */
