@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #0c0c0c;
  background-color: #dad8d3;
  overflow-x: hidden;
  padding: 20px;
}

.layout_padding {
  padding: 70px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}
.bord {
  border: 2px solid #999998;
  padding: 0;
  border-radius: 20px;
}
.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: "Roboto", sans-serif;
}

td > button {
  background-color: white;
}

.tableContainer {
  background-color: #dedede;
  border-radius: 20px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: bold;
}

.heading_container h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background: #f7444e;
  margin: 10px auto 10px;
}

.heading_container h2 span {
  color: #f7444e;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*header section*/

.hero_area {
  position: relative;
  min-height: calc(100vh - 70px);
  /* Adjust 70px to the actual height of your header */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.content-page {
  background-color: #f4f3f3;
  padding: 0;
  border-radius: 20px;
}

.sub_page .hero_area {
  min-height: auto;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  background-color: white;
  border-radius: 20px 20px 0 0;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  font-family: "Roboto", sans-serif;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.nav-item {
  padding: 16px;
  margin-inline: 6px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  color: #8d3977;
  text-align: center;
  text-transform: none;
  border-radius: 10px;

  font-weight: 700;
}

.pagination-button {
  background-color: #8d3977;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 5px;
  outline: none;
}

.pagination-button:hover {
  background-color: #ff7f4d;
}

#paginationContainer {
  margin-top: 20px;
}

#itemsPerPageDropdown {
  margin-right: 10px;
}

/* Hover state - change the background image on hover */

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .nav_search-btn:hover {
  color: #f7444e;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 0;
  top: 50%;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/

.product_section .heading_container {
  margin-bottom: 20px;
}

.subscribe_section {
  text-align: center;
}

.subscribe_section .box {
  background-color: #d4ced0;
  padding: 75px 45px;
}

.subscribe_section .subscribe_form .heading_container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #002c3e;
}

.subscribe_section .subscribe_form .heading_container h2 {
  padding: 0 25px;
}

.subscribe_section .subscribe_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subscribe_section .subscribe_form form input {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 90px;
  outline: none;
  padding: 5px 25px;
  background-color: #ffffff;
  margin-top: 15px;
  text-align: left;
}

.subscribe_section .subscribe_form form input::-webkit-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input:-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::-ms-input-placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form input::placeholder {
  color: #171620;
}

.subscribe_section .subscribe_form form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #f7444e;
  border: 1px solid #f7444e;
  color: #ffffff;
  border-radius: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: none;
  margin-top: 35px;
  font-weight: 600;
  width: 100%;
  max-width: 285px;
}

.subscribe_section .subscribe_form form button:hover {
  background-color: transparent;
  color: #f7444e;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: 55px;
}

.client_section .box .img_container {
  width: auto;
  height: auto;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.client_section .box .img_container .img-box {
  width: auto;
  height: auto;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  margin-right: -1px;
}

.client_section .box .img_container .img-box .img_box-inner {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.client_section .box .img_container .img-box .img_box-inner img {
  width: 100%;
}

.client_section .box .detail-box {
  margin-top: 25px;
}

.client_section .box .detail-box h5 {
  font-size: 20px;
  font-weight: 600;
}

.client_section .box .detail-box h6 {
  font-size: 15px;
  color: #999998;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  top: 43%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  width: auto;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  opacity: 1;
  color: #ffffff;
  background-color: #f7444e;
  border-radius: 100%;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #212121;
}

.client_section .carousel-control-prev {
  left: 25%;
}

.client_section .carousel-control-next {
  right: 25%;
}

/* footer section*/
.footer_section {
  background-color: #002c3e;
  color: #ffffff;
  padding-top: 70px;
}

.footer_section {
  color: #ffffff;
  text-align: left;
}

.footer_section h4 {
  font-size: 28px;
}

.footer_section h4,
.footer_section .footer-logo {
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  text-align: left;
}

.footer_section .footer-col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 10px 0;
  color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: #f7444e;
}

.footer_section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}

.footer_section .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: center;
  justify-content: left;
  margin-top: 25px;
  margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #002c3e;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  margin: 0 2.5px;
  font-size: 18px;
}

.footer_section .footer_social a:hover {
  color: #f7444e;
}

.footer_section .map_container {
  width: 100%;
  height: 175px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.footer_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer_section .map_container .map #googleMap {
  height: 100%;
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 25px;
}

.footer_section .footer-info p {
  color: #ffffff;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_section .footer-info p a {
  color: inherit;
}

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

.heading_container.heading_center h3 {
  position: relative;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

li.nav-item ul {
  background: #fff;
  border: solid #000 2px;
  border-radius: 0;
  padding: 10px 20px;
  margin-left: 10px;
  margin-top: 10px;
  box-shadow: 4px 4px 0px 0 #000;
  width: 190px;
}

li.nav-item ul li {
  float: left;
  width: 100%;
  margin: 6px 0;
}

li.nav-item ul li a {
  color: #212529;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-top: 10px;
  transition: ease all 0.5s;
}

li.nav-item ul li a:hover,
li.nav-item ul li a:focus {
  color: #f7444e;
}

.inner_page_head {
  background: #f7444e;
  text-align: center;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 40px;
}

.inner_page_head h3 {
  font-size: 42px;
  font-weight: 800;
}

/** footer **/

footer {
  background: #f8f8f8;
  padding: 90px 0 70px;
}

.logo_footer {
  margin-bottom: 30px;
}

.information_f p {
  margin-bottom: 1.2rem;
  line-height: 25px;
  font-size: 15px;
}

.widget_menu h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.2px;
  margin-bottom: 25px;
}

.widget_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_menu ul li {
  float: left;
  width: 100%;
}

.widget_menu ul li a {
  font-size: 15px;
  color: #000;
  margin-bottom: 0;
  float: left;
  width: 100%;
  margin-top: 5px;
}

.field {
  display: flex;
}

.widget_menu {
  float: left;
  width: 100%;
}

div.form_sub .field input[type="email"],
div.form_sub .field input[type="email"]:hover,
div.form_sub .field input[type="email"]:focus {
  padding: 10px 110px 10px 15px;
  border-radius: 0;
  border: solid #ccc 1px;
  font-size: 14px;
  position: relative;
  box-shadow: none;
  width: 100%;
  height: 48px;
}

.form_sub {
  position: relative;
}

.form_sub input[type="email"] + input[type="submit"] {
  position: absolute;
  right: 0;
  background: #f7444e;
  color: #fff;
  border: none;
  top: 0px;
  font-size: 14px;
  height: 48px;
  font-weight: 600;
  padding: 0 15px;
}
.location-edit-section .content {
  position: relative;
  z-index: 1; /* Ajoutez ceci */
}

form input {
  background: #fff;
  border: solid #ccc 1px;
  padding: 15px 15px;
  width: 100%;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: none;
  line-height: normal;
}

form textarea {
  background: #fff;
  border: solid #ccc 1px;
  padding: 15px 15px;
  width: 100%;
  min-height: 150px;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: none;
  line-height: normal;
}

form input[type="submit"] {
  border: none;
  padding: 15px 45px;
  width: auto;
  font-size: 16px;
  text-transform: none;
  line-height: normal;
  margin: 0 auto;
  display: flex;
  background: #333;
  color: #fff;
  font-weight: 600;
  transition: ease all 0.1s;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus {
  background: #f7444e;
  color: #fff;
}

/** cpy **/

.cpy_ {
  background: #222;
  text-align: center;
  padding: 20px 0;
  border-radius: 20px 20px 0 0;
}

.cpy_ p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.cpy_ p a {
  margin: 0;
  color: #f7444e;
  font-size: 15px;
  font-weight: 400;
}

#dashboard {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#stats-boxes {
  display: flex;
  justify-content: space-between;
}

.stats-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin-right: 20px;
  text-align: center;
}

.stats-box:last-child {
  margin-right: 0;
}

#date-range-picker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

#date-range-picker label {
  margin-right: 10px;
}

#date-range-picker button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#apply-filter {
  background-color: #f7444e;
  color: #ffffff;
}

#reset-filter {
  background-color: #cccccc;
  color: #333333;
}

.chart-title {
  text-align: center;
  /* Center the text */
  padding-top: 20px;
  /* Add padding to the top */
  padding-bottom: 20px;
  /* Add padding to the bottom */
}

.actions {
  display: none;
  /* Hide actions by default */
  position: absolute;
  /* To make dropdown float above other content */
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Show actions when its parent is hovered */
.action-cell:hover .actions {
  display: block;
}

/* Styles for individual action buttons */
.actions button {
  color: black;
  text-decoration: none;
  display: block;
  text-align: center;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Custom styles for the login page */

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #dad8d3;
}

.login-container {
  max-width: 80%;
  min-width: 75%;
  height: 85vh;
  background: rgb(241, 239, 46);
  background: linear-gradient(
    315deg,
    rgba(241, 239, 46, 1) 0%,
    rgba(245, 137, 48, 1) 34%,
    rgba(245, 130, 35, 1) 100%
  );
  border-radius: 20px;
  box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 47px 0px rgba(0, 0, 0, 0.75);
}
.loginCard {
  padding: 16px;
  background: rgba(209, 209, 209, 0.431);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.18);
}
.loginBtn {
  border-radius: 16px;
}
.imgBackLogin {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

label {
  font-size: 1rem;
  margin-bottom: 0 !important;
}
.custom-height {
  min-height: 500px; /* Réglez la hauteur souhaitée selon vos besoins */
}

.btn-group button {
  position: relative;
  bottom: 6px;
}
h1 {
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  justify-content: center;
  margin-bottom: 15px;
  text-align: left;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.tag-sticker {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 4px;
}

.tag-sticker:hover {
  background-color: #ccc;
}

#toast {
  visibility: hidden;
  /* Hidden by default. */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  top: 30px;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#toast.showValid {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
  background-color: #008000;
}

#toast.showError {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
  background-color: #ff0000;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}

.profile-container {
  display: flex;
  align-items: center;
}

.profile-picture {
  width: 40px;
  /* Adjust the width as per your preference */
  height: 40px;
  /* Adjust the height as per your preference */
  border-radius: 50%;
  overflow: hidden;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  text-align: center;
  padding-top: 5px;
}

.admin-type-card {
  border-radius: 5px;
  padding: 10px 20px;
  /* Increase padding for larger card */
  font-size: 20px;
  /* Increase font-size for larger text */
  margin-top: 5px;
  /* Adjust the spacing as per your preference */
  display: inline-block;
  /* Add this to display the card inline with the username */
  color: #fff;
}

/* The container for the nav-tabs */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* Individual nav-items */
.nav-item {
  margin-bottom: -1px;
}

/* Individual nav-links */
#adminOperations .nav-link {
  color: white !important;
  border-radius: 8px;
}
/* Style for the active nav-link */
#adminOperations .nav-link.active {
  background-color: #8d3977 !important ;
}

/* Style for the hover state of non-active nav-links
.nav-link:not(.active):hover {
  color: #495057;
  background-color: #e9ecef;
  border-color: #ddd;
} */

.tab-content {
  padding: 20px;
  border: 1px solid #ddd;
  border-top: none;
  background-color: #f9f9f9;
  /* This will give a light grey background color */
  border-radius: 5px;
  /* This will give the corners a slight roundness */
  margin-top: 10px;
  /* This will provide some space between the tabs and the content */
}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed; /* changed from relative to fixed */
  bottom: 23px; /* distance from the bottom of the page */
  left: 28px; /* distance from the left side of the page */
  width: 280px;
  z-index: 10; /* ensures the button appears above other elements */
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: relative;
  border: 3px solid #f1f1f1;
  z-index: 9;

  /* Define width and margin */
  width: 80%; /* Adjust as needed */
  margin: 0 auto; /* Centers the form */
  padding: 20px; /* Optional: adds some internal space between the border of the form and its contents */
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type="text"],
.form-container input[type="password"] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04aa6d;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}
.form-group {
  position: relative;
  top: 50px;
  left: 20px;
}
.card img {
  width: 30px;
}

h1 {
  color: #8d3977;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
}
.form-control {
  border-radius: 10px;
}
.table table-striped {
  width: 1000px;
  position: relative;
  left: 110px;
}
.card {
  color: white;
  padding: 0.8rem;
  width: 170px;
  border: none;
  border-radius: 0%;
  height: 100px;
  background-color: #c359a7;
}
#searchButton {
  border-radius: 10px;
  background-color: #8d3977;
  border: none;
}
.content-container img {
  width: 50px;
  position: relative;
  left: 20px;
}
.content-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
  grid-template-rows: repeat(6, 1fr);
  width: 95%;
  margin: auto; /* centers the container */
  height: 150vh;
}

.box {
  background: #f7f7f7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 20px;
  -moz-box-shadow: 10px 11px 37px -6px rgba(0, 0, 0, 0.69);
  -webkit-box-shadow: 10px 11px 37px -6px rgba(0, 0, 0, 0.69);
  box-shadow: 10px 11px 37px -6px rgba(0, 0, 0, 0.69);
}
.box::-webkit-scrollbar {
  width: 0;
}

#userStatutBox {
  grid-column: span 3;
  grid-row: span 3;
}

#statistics-box2 {
  grid-column: span 2;
  grid-row: span 4;
}
#statistics-box3 {
  grid-column: span 2;
  grid-row: span 2;
}

#mapBox {
  grid-column: span 3;
  grid-row: span 3;
}

/* .content-container {
  position: relative;
} */

.content-container > .box > .px-4.py-2 {
  position: sticky;
  top: 0;
  z-index: 100;
}

.map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.map-content {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  height: 70%;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.close {
  color: #000;
  float: right;
  font-size: 28px;
  cursor: pointer;
}

#map {
  width: 100%;
  height: 100%;
  position: relative;
  height: 400px; /* ou toute autre hauteur nécessaire */
}

#imagePreviews {
  display: flex;
  flex-wrap: wrap; /* This will wrap the items to the next line if the container width is exceeded */
  gap: 16px; /* space between images */
}

#imagePreviews > div {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the delete button below the image */
}

#imagePreviews button {
  margin-top: 8px; /* Space between image and button */
  background-color: red;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
}

#imagePreviews button:hover {
  background-color: darkred;
}

.error {
  border: 2px solid red;
}

.error-message {
  color: red;
  font-size: 0.9em;
}

#userIdFilterDropdown,
#regionFilterDropdown {
  display: none;
}
#pageButtonsContainerCreation {
  display: inline-block;
}
#pageButtonsContainerOperation {
  display: inline-block;
}

#pageButtonsContainerCreation button {
  background-color: #8d3977;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 5px;
  outline: none;
}
#pageButtonsContainerOperation button {
  background-color: #8d3977;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 5px;
  outline: none;
}
#pageButtonsContainerCreation button.active {
  background-color: orange;
}

#pageButtonsContainerCreation button:hover {
  background-color: #ff7f4d;
}
#pageButtonsContainerOperation button.active {
  background-color: orange;
}

#pageButtonsContainerOperation button:hover {
  background-color: #ff7f4d;
}

#paginationContainerCreation {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
#paginationContainerOperation {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.page-btn {
  margin: 0 5px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.page-btn.active {
  background-color: #f0f0f0;
  border-color: #000;
}

.page-btn:hover {
  background-color: #e0e0e0;
}

.carousel-control-prev i,
.carousel-control-next i {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
  font-size: 18px;
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

.add-button-container {
  margin-bottom: 10px;
  width: fit-content;
  border-radius: 16px;
}

.btn-toolbar {
  -moz-box-shadow: 26px 26px 13px -20px rgba(0, 0, 0, 0.56);
  -webkit-box-shadow: 26px 26px 13px -20px rgba(0, 0, 0, 0.56);
  box-shadow: 26px 26px 13px -20px rgba(0, 0, 0, 0.56);
}

.document-upload-container {
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  width: 50%;
}
#prevPageBtnCre {
  background-color: orange; /* Couleur de fond */
  color: #fff; /* Couleur du texte */
  padding: 8px 16px; /* Espacement intérieur */
  border: none; /* Supprimer la bordure */
  border-radius: 4px; /* Bordure arrondie */
  cursor: pointer; /* Curseur au survol */
  font-size: 16px; /* Taille de la police */
}

#prevPageBtnCre:hover {
  background-color: orange; /* Couleur de fond au survol */
}
#prevPageBtnOpe {
  background-color: orange; /* Couleur de fond */
  color: #fff; /* Couleur du texte */
  padding: 8px 16px; /* Espacement intérieur */
  border: none; /* Supprimer la bordure */
  border-radius: 4px; /* Bordure arrondie */
  cursor: pointer; /* Curseur au survol */
  font-size: 16px; /* Taille de la police */
}

#prevPageBtnOpe:hover {
  background-color: orange; /* Couleur de fond au survol */
}
#nextPageBtnOpe {
  background-color: orange; /* Couleur de fond */
  color: #fff; /* Couleur du texte */
  padding: 8px 16px; /* Espacement intérieur */
  border: none; /* Supprimer la bordure */
  border-radius: 4px; /* Bordure arrondie */
  cursor: pointer; /* Curseur au survol */
  font-size: 16px; /* Taille de la police */
}

#nextPageBtnOpe:hover {
  background-color: orange; /* Couleur de fond au survol */
}
#nextPageBtnCre {
  background-color: orange; /* Couleur de fond */
  color: #fff; /* Couleur du texte */
  padding: 8px 16px; /* Espacement intérieur */
  border: none; /* Supprimer la bordure */
  border-radius: 4px; /* Bordure arrondie */
  cursor: pointer; /* Curseur au survol */
  font-size: 16px; /* Taille de la police */
}

#nextPageBtnCre:hover {
  background-color: orange; /* Couleur de fond au survol */
}
table {
  width: 100%;
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.upload-button {
  cursor: pointer;
  background-color: #4caf50;
  color: white;
  padding: 5px 10px;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  transition-duration: 0.4s;
}

.upload-button:hover {
  background-color: white;
  color: black;
}

.upload-status {
  color: #777;
}

.detailsDiv {
  padding-left: 14px;
  border-left: #8d3977 3px solid;
}

.comment {
  margin-bottom: 10px; /* Adjust the space between comments */
}

.comment-date {
  font-size: 0.9em;
  color: #666; /* Adjust the color and size as needed */
}

.comments-container {
  position: relative;
  top: 35px; /* Adds space between the comments container and the next element */
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* styles.css */
#entry-container {
  margin: 20px;
  padding: 10px;
}

.entry {
  padding: 10px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.form-container {
  display: flex; /* Use flexbox to lay out children in a row */
  align-items: center; /* Align items vertically in the center */
  margin-top: 10px;
  gap: 10px; /* Space between form elements */
}

input,
button {
  flex: 1; /* Each element takes equal space */
  min-width: 120px; /* Minimum width of each element */
}

input {
  padding: 8px;
}

button {
  padding: 8px 16px;
  cursor: pointer;
}

#transactionsChart {
  width: 50%;
  height: 50%;
}

.smaller-text {
  font-size: 0.3em;
}
.btn-group label {
  margin-right: 10px; /* Adjust the spacing to your preference */
  display: inline-block; /* Ensures the label is properly aligned with the input */
}

.nav-item img,
td img {
  filter: hue-rotate(280deg) saturate(70%) brightness(80%) !important;
}


.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  min-width: 1000px; /* Adjust based on your needs */
}