html,
body {
  height: 100%;
}

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

#moon {
  cursor: pointer;
}
/* main.flex-grow-1 {
  padding-bottom: 2rem;
} */

/* main.flex-grow-1 {
  flex-grow: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 2500px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
} */



/* From Uiverse.io by Voxybuns */
/* The switch - the box around the slider */
.switch {
  /* Variables */
  --switch_width: 2em;
  --switch_height: 1em;
  --thumb_color: #e8e8e8;
  --track_color: #e8e8e8;
  --track_active_color: #888;
  --outline_color: var(--bs-body-color);
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: var(--switch_width);
  height: var(--switch_height);
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


/* The slider */
.slider {
  box-sizing: border-box;
  border: 2px solid var(--outline_color);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--track_color);
  transition: .15s;
  border-radius: var(--switch_height);
}

.slider:before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  height: var(--switch_height);
  width: var(--switch_height);
  border: 2px solid var(--outline_color);
  border-radius: 100%;
  left: -2px;
  bottom: -2px;
  background-color: var(--thumb_color);
  transform: translateY(-0.2em);
  box-shadow: 0 0.2em 0 var(--outline_color);
  transition: .15s;
}

input:checked+.slider {
  background-color: var(--track_active_color);
}

input:focus-visible+.slider {
  box-shadow: 0 0 0 2px var(--track_active_color);
}

/* Raise thumb when hovered */
input:hover+.slider:before {
  transform: translateY(-0.3em);
  box-shadow: 0 0.3em 0 var(--outline_color);
}

input:checked+.slider:before {
  transform: translateX(calc(var(--switch_width) - var(--switch_height))) translateY(-0.2em);
}

/* Raise thumb when hovered & checked */
input:hover:checked+.slider:before {
  transform: translateX(calc(var(--switch_width) - var(--switch_height))) translateY(-0.3em);
  box-shadow: 0 0.3em 0 var(--outline_color);
}

.inactive-row {
  background-color: #f1f1f1;
  opacity: 0.8;
}

.inactive-row td:not(:first-child) {
  color: #888 !important;
}

.inactive-row td:not(:first-child) * {
  color: #888 !important;
}

.inactive-row td:not(:first-child) a,
.inactive-row td:not(:first-child) input,
.inactive-row td:not(:first-child) button {
  pointer-events: none;
  opacity: 0.6;
}

.custom-form {
  background-color: var(--bs-body-bg);
  /* Matches your screenshot */
  padding: 1rem;
}

.custom-input input,
.custom-input select,
.custom-input textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  border-radius: 0;
  width: 100%;
  padding: 0.25rem 0;
  font-size: 1rem;
  box-shadow: none;
}

.custom-input label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}

.custom-input input:focus,
.custom-input select:focus,
.custom-input textarea:focus {
  outline: none;
  border-color: var(--bs-body-color);
  box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Button Ajouter */

.toggle-plus-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
}

.bar {
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: var(--bs-body-color);
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.bar.horizontal {
  transform: translate(-50%, -50%) rotate(0deg);
}

.bar.vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.toggle-plus-btn[aria-expanded="true"] .horizontal {
  transform: translate(-50%, -50%) rotate(45deg);
}

.toggle-plus-btn[aria-expanded="true"] .vertical {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* .clickable-message-row {
  cursor: pointer;
}

.clickable-message-row:hover {
  background-color: #f8f9fa;
} */

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  background-color: #f8f9fa;
  color: black;
}


/* pagination !!!! */
.paginator-btn {
  background-color: #4CAF50;
  color: var(--bs-body-color);
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s;
}

.paginator-btn:hover:not(:disabled) {
  background-color: #388E3C;
}

.paginator-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}



#filtered-user-list {
  max-height: 300px;
  /* fixed height for scrolling */
  overflow-y: auto;
  /* enables vertical scroll */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding-right: 10px;
  /* optional: space for scrollbar */
}

#calendar {
  max-width: 900px;
  margin: 50px auto;
}

.doc-card {
  border: 1px solid var(--bs-body-color);
  border-radius: 8px;
  padding: 1rem;
  background: var(--bs-body-color);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.doc-card:hover {
  box-shadow: 0 4px 12px var(--bs-body-color);
}

.doc-preview {
  position: relative;
  height: 140px;
  background-color: #f9f9f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

.doc-preview img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.doc-tag {
  position: absolute;
  top: 6px;
  right: 8px;
  background: #ff4d4f;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

.doc-fallback {
  font-size: 2rem;
  color: #ccc;
  font-weight: bold;
}

.doc-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.doc-title {
  font-weight: 500;
  font-size: 1rem;
}

.doc-meta {
  font-size: 0.85rem;
  color: #6c757d;
}


/* hidden content before pagination. */

.card-hidden {
  display: none !important;
}

.card-fade-in {
  animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

table.table-fixed {
  width: 100%;
  table-layout: fixed;
  /* border-collapse: collapse; */
}


table.table-fixed td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

table.table-fixed td button,
table.table-fixed td .btn {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

#sentMessages tr.position-relative {
  position: relative;
}

/* #sentMessages td.position-absolute {
  width: auto !important;
  background: transparent;
  border: none;
  padding: 0;
} */

.unread {
  font-weight: bold;
}

.gradient-3d-box {
  background-image: linear-gradient(to bottom,
      rgb(var(--bg-accent) / 1) var(--tw-gradient-from-position, 0%),
      rgb(var(--bg-accent) / 0) var(--tw-gradient-to-position, 100%));
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.1);
  /* padding: 1rem; */
  margin-bottom: 1.5rem;
  margin: 0 10px;
  transition: all 0.3s ease;
  /* min-width: 325px; */
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.5rem;
  justify-content: center;
}

.product-card {
  width: 260px;
  max-width: 260px;
}

.product-card .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* S'assure que toutes les cartes ont même hauteur */
}

.product-card .card .content {
  flex-grow: 2;
}


.product-detail {
  font-size: 0.9rem;
  background-color: var(--bs-body-color);
  padding: 0.5rem;
  border-radius: 4px;
}

.product-compact,
.product-detail {
  min-height: 150px;
  /* ou une hauteur fixe selon ton design */
}

.img-placeholder {
  width: 100%;
  height: 150px;
  background-color: #538e5f;
  /* ou transparent */
  /* border: 1px solid #100202;   optionnel, pour style visuel */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
  border-radius: 4px;
}

#text-img {
  font-size: 2rem;
  color: honeydew;
}


.doc-tag {
  font-size: 0.75rem;
  background-color: rgba(220, 53, 69, 0.9);
  color: white;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
}

.doc-fallback {
  font-size: 1.2rem;
  font-weight: bold;
}

.doc-card img {
  object-fit: cover;
}


#receivedDocuments {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  /* 6 across on large screens */
  gap: 1rem;
}

/* Optional: Remove Bootstrap's container max-width */
.container-fluid {
  max-width: 100% !important;
}

.bg-pdf {
  background-color: rgba(220, 53, 69, 0.08);
  /* red */
}

.bg-docx {
  background-color: rgba(13, 110, 253, 0.08);
  /* blue */
}

.bg-other {
  background-color: rgba(25, 135, 84, 0.08);
  /* green */
}


.file-type-overlay {
  backdrop-filter: blur(2px);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
  font-size: 0.75rem;
}



/* Bottom overlay bar inside preview */
.doc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  color: var(--bs-body-color);
  font-weight: 600;
  font-size: 0.8rem;
}


/* Specific file-type coloring */
.doc-overlay-pdf {
  background-color: rgba(236, 30, 51, 0.5);
  /* Bootstrap 'danger' */
}

.doc-overlay-docx {
  background-color: rgba(55, 123, 226, 0.5);
  /* Bootstrap 'primary' */
}

.doc-overlay-other {
  background-color: rgba(238, 171, 26, 0.5);
  /* Bootstrap 'success' */
}

.doc-overlay-csv {
  background-color: rgba(52, 204, 133, 0.5);
  /* Bootstrap 'success' */
}

/* @media (min-width: 1400px) {
  #receivedDocuments {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  #receivedDocuments {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #receivedDocuments {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  #receivedDocuments {
    grid-template-columns: repeat(2, 1fr);
  }
} */
[aria-disabled="true"] {
  opacity: 0.5;
}


.small-text {
  font-size: 1.1rem;
  /* ou 13px */
}

#calendar {
  max-width: 100%;
  width: 80%;
  overflow-x: auto;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

/* .fc-scrollgrid-sync-table {
    max-height: 50%;
}
.fc-daygrid-day{
  max-height: 50%;
} */

/* .fc-daygrid-bg-harness {
  max-height: 50%;
}

.fc-highlight {
  max-height: 50%;
} */
@media (min-width: 768px) {
  .fc-button {
    padding: 0.3em 0.5em;
    font-size: 0.5rem;
  }
}

.fc {
  font-size: 1rem;
  /* Réduit la taille générale du texte */
}

.fc-button {
  font-size: 0.9rem !important;
  padding: 0.6em 1.2em !important;
  transition: all 0.3s ease-in-out !important;
}

/* Taille moyenne d'écran */
@media (max-width: 992px) {
  .fc-button {
    font-size: 0.7rem !important;
    padding: 0.5em 1em !important;
  }
}

/* Taille d'écran petite */
@media (max-width: 768px) {
  .fc-button {
    font-size: 0.6rem !important;
    padding: 0.4em 0.8em !important;
  }
}

/* Écran très petit (mobile) */
@media (max-width: 480px) {
  .fc-button {
    font-size: 0.3rem !important;
    padding: 0.2em 0.5em !important;
  }
}

/* .fc-button-group {
  max-block-size: 20%;
} */

.fc-toolbar-title {
  font-size: 2rem !important;
  transition: font-size 0.3s ease-in-out !important;
  text-transform: capitalize !important;
}

@media (max-width: 768px) {
  .fc-toolbar-title {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .fc-toolbar-title {
    font-size: 0.6rem !important;
  }
}

.fc .fc-button {

  background-color: rgb(46, 161, 126);
  /* couleur fond bouton */
  color: var(--bs-body-color);
  /* couleur texte */
  border-color: #212529;
  opacity: 0.9;
  border-radius: 0.25rem;
}

.fc .fc-button .fc-today-button {
  background-color: rgb(255, 255, 255);
  color: var(--bs-body-color);
  border: solid 1px #343a40;
  opacity: 0.6;
}

.fc .fc-button:hover {
  background-color: rgb(255, 255, 255);
  color: #000;
  border-color: #343a40;
}

.fc .fc-event-title {
  color: var(--bs-body-color);
}

.fc-event-time {
  color: var(--bs-body-color);
}

.fc-daygrid-day-number {
  color: var(--bs-body-color);
}

.fc-col-header-cell-cushion {
  color: var(--bs-body-color);
}

/* 
received_messages  */

.reply-thread {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.reply-message {
  max-width: 80%;
  padding: 1.2rem;
  border-radius: 12px;
  border: 0.5px solid #ccc;
  position: relative;
  
}

.reply-message.me {
    align-self: flex-start;
    background-color: #dcfceb;
    text-align: left;
}

.reply-message.them {
    align-self: flex-end;
    background-color: #e7ebff;
    text-align: right;
}
.reply-text {
font-size: 1.3rem;
font-weight: normal;
}

.reply-author {
  font-style: italic;
}

.reply-date {
  font-size: 0.8rem;
  color: #6c757d;
}

.reply-message.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s ease forwards;
  
}

.clickable-thread {
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.clickable-thread:hover {
	background-image: linear-gradient(
		135deg,
		#198754 25%,
		#157347 25%,
		#157347 50%,
		#146c43 50%,
		#146c43 75%,
		#198754 75%
	);
  	color: white !important;
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#map {
  margin: auto;
  max-width: 1660px;
  height: 39.583vw;
}

.card.hover-highlight {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card.hover-highlight:hover {
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  border-color: #0d6efd;
}



/* Position & animation */
.backToTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 8rem;
  z-index: 1000;
  display: none;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.2;
  box-shadow:
    0 0.7px 0.7px rgba(0, 0, 0, 0.02),
    0 1.6px 1.6px rgba(0, 0, 0, 0.028),
    0 3px 3px rgba(0, 0, 0, 0.035),
    0 5.4px 5.4px rgba(0, 0, 0, 0.042),
    0 10px 10px rgba(0, 0, 0, 0.05),
    0 24px 24px rgba(0, 0, 0, 0.07);
}

/* Optional: Tweak icon alignment */
.backToTopBtn i {
  vertical-align: middle;
}


#toast-notification {
  min-width: 220px;
}

.explore-dropdown {
  min-width: 650px;
  z-index: 9999;
  /* High z-index ensures it overlays other elements */
  position: absolute;
  /* Must be positioned */
  background-color:  var(--bs-body-bg);
  border-radius: 12px;
  transform: translateX(-50%);
  left: 50%;
  top: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#exploreToggle {
  font-weight: 500;
  color:  var(--bs-body-color);
  padding: 0.5rem 0;
  line-height: 1.25;
  cursor: pointer;
}

#exploreToggle:hover {
  text-decoration: underline;
}

.explore-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  background-color:  var(--bs-body-bg);
  text-decoration: none;
  transition: background-color 0.2s ease;
  height: 80px;
}

.explore-item:hover {
  background-color: #f5c518;
  text-decoration: none;
}

.explore-icon {
  margin-right: 16px;
  flex-shrink: 0;
  color:  var(--bs-body-color);
}

.explore-text {
  flex-grow: 1;
}

.explore-label {
  font-weight: 600;
  color: var(--bs-body-color);
}

.explore-desc {
  font-size: 0.85rem;
  color: #6c757d;
}

.explore-arrow {
  flex-shrink: 0;
  color: #6c757d;
}

.explore-item:hover .explore-label,
.explore-item:hover .explore-desc,
.explore-item:hover i {
  color:  var(--bs-body-color) !important;
}

.explore-dropdown {
  display: none;
}

.explore-dropdown.show {
  display: block;
}
/* button modify and supprimer */
 div .dropdown  {
  z-index: 2;
}

/* .fa-layers .svg-inline--fa {
  position: absolute;
  height: 1.5em;
}

.fa-layers .svg-inline--fa svg {
  position: absolute;
  height: 1.5em;
} */

/* .sort-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 1em;
  line-height: 1;
}

.sort-icons svg {
  height: 0.4em;
  margin: 0;
} */


/* sort icons sortBy */
.sort-icons {
  position: relative;
  display: inline-block;
  margin-left: 0.25rem; /* spacing between text and icon */
  width: 1em;
  height: 1.5em;
}

.sort-icons svg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5em;
}

.sort-icons svg:first-child {
  top: 0;
}

.sort-icons svg:last-child {
  bottom: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;}

  .text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  --bs-danger: #dc3545;
}

.hover-link {
		text-decoration: none;
		cursor: pointer;
	}
	.hover-link:hover {
		text-decoration: underline;
	}

  .folder-row.drag-over {
    background-color: #dff0d8; /* light green */
}

  [draggable][data-user-id] {
    cursor: grab;
  }

  [draggable][data-user-id]:active {
    cursor: grabbing;
  }

.folder-row.drag-over,
.folder-row.drag-over td,
.up-row.drag-over,
.up-row.drag-over td {
	background-image: linear-gradient(
		135deg,
		#198754 25%,
		#157347 25%,
		#157347 50%,
		#146c43 50%,
		#146c43 75%,
		#198754 75%
	);
	color: white !important;
}

.folder-row.drag-over a,
.up-row.drag-over a {
	color: white !important;
	text-decoration: underline;
}

.folder-row.drag-over svg,
.up-row.drag-over svg {
	filter: brightness(1000%) invert(1);
}


/* Hand cursor ONLY on draggable user rows */
tr[data-user-id] {
	cursor: grab;
}

tr[data-user-id]:active {
	cursor: grabbing;
}

/* Ensure NO hand cursor on folder rows, retour, or folder-open row */
.folder-row,
.up-row,
tr.table-secondary {
	cursor: default !important;
}



/* Invert icons */
.folder-row.drag-over svg,
.up-row.drag-over svg {
	filter: brightness(0) invert(1);
}

.folder-row.drag-over a:hover,
.up-row.drag-over a:hover {
	text-decoration: underline;
}


a.navigate-folder,
a.go-up {
  text-decoration: none;
}

a.navigate-folder:hover,
a.go-up:hover {
  text-decoration: underline;
}

/* Remove drag hand globally */
[draggable] {
	cursor: default;
}

/* Allow drag hand ONLY on user rows */
tr[id^="user-row-"][draggable] {
	cursor: grab;
}

tr[id^="user-row-"][draggable]:active {
	cursor: grabbing;
}


tr[id^="salon-row-"][draggable] {
	cursor: grab;
}

tr[id^="salon-row-"][draggable]:active {
	cursor: grabbing;
}



.folder-row.drag-over,
.up-row.drag-over {
	cursor: pointer !important;
}

tr {
  height: 52px !important;
}

td, th {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  vertical-align: middle;
}
@media (max-width: 770px) {
  #explore {
    visibility: hidden;
    visibility: collapse;
  }
  #explore-container {
    /* display: flex;
    flex-direction: column; */
    align-items: center;
    justify-content: center;
  }
  #logo-container {
    margin: auto;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
  }
  /* #title-container {
    margin: auto;
      display: inline-block;
    } */

}

.custom-popover {
  border: solid 1px var(--bs-body-color);
}

.popover-header {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-weight: bold;
}

@media (min-width: 768px) {
  #title-container {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
  }
  #title-container > div:last-child {
    margin-top: 0 !important;
  }

}


/* Modals */
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
}

.modal-table td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  vertical-align: middle;
}
[data-control="checkbox-dropdown"] .dropdown-list {
  display: none;
}

[data-control="checkbox-dropdown"].show .dropdown-list {
  display: block;
  z-index: 1000;
}

.footer-links {
	flex: 1 1 200px;
	min-width: 180px;
}

.footer-links h5 a,
.footer-links a {
	color: #000000;
	text-decoration: none;
	font-size: 100%;
}

.footer-links a:hover {
	text-decoration: underline;
}

