body {
  font-family: "Montserrat", sans-serif !important;
  margin: 0;
  padding: 0;
  outline: 0;
}


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px; /* Add padding for spacing */
  background-color: #f0f0f0; 
  position: sticky;
  top: 15px;
}

.logo-block {
  display: flex;
  align-items: center;
}
.logo-block h1 {
  margin: 0 !important;
}
.logo {
  width: 80px; /* Set the width of the logo */
  height: 50px; /* Set the height of the logo */
  margin-right: 10px; /* Add spacing between logo and text */
  max-width: 150px;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
}

.header-text {
  font-size: 24px; /* Adjust font size as needed */
}

/* Assuming you have a class named "copyright" for the copyright text */
.footer {
  position: fixed;
  bottom: 5px;
  left: 5%;
  /* transform: translateX(-50%); */
  text-align: center;
  padding: 10px 10px;
  border-top: 1px solid #f0f0f0;
  background-color: rgba(217, 210, 210, 0.3);
  border-radius: 10px;
  width: 90%;
  font-weight: 400;
  font-size: 0.7em;
  letter-spacing: 0.5px;
}
.footer b {
  font-weight: 600 !important;
}

.header h1 {
  margin: 0px;
  font-size: 30px;
  font-weight: 700;
  color: #193856;
  margin-left: 10px;
}

/* New styles for header */
.header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: rgba(217, 210, 210, 0.3);
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  margin: 15px auto 0;
  box-shadow: 0 5px 5px -10px rgba(0, 0, 0, 0.5);
}

.header a:hover,
.footer a:hover {
  /* Change the color of the link on hover */
  color: #4ca1af;
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.header {
  animation: slideInFromTop 1s ease-out;
}

.footer {
  animation: slideInFromBottom 1s ease-out;
}

html,
body {
  height: 100%;
}
body.background {
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  background-color: #e9da49; 
  font-size: 0.8em;
  min-height: 100%;
}

img {
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.1), /* by applying more layers, you get a more natural effect */ 
    0 10px 20px rgba(0, 0, 0, 0.2), 
    0 15px 25px rgba(0, 0, 0, 0.1);
  border-radius: var(--br-5xs); /* Ensure rounded corners */
}


.logo-header-icon {
  width: 100px;
  position: relative;
  max-height: 100%;
  object-fit: cover;
  max-width: 100%;
  box-shadow: none;
}

.logo-header {
  flex: 1;
  background-color: rgba(255, 255, 255, 0);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  box-sizing: border-box;
  min-width: 100px;
  max-width: 100%;
}

.bouton-log-in {
  cursor: pointer;
  border: 0;
  padding: 2px 12px;
  background-color: black;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  white-space: nowrap;
  color: whitesmoke
}
.bouton-log-in:hover,
.button1:hover,
.button2:hover,
.button3:hover,
.button:hover {
  background-color: #333;
}

/* Base button styles */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #4f3f3f;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 1.0s ease-in-out, background-color 1.0s ease-in-out, border-color 1.0s ease-in-out, box-shadow 1.0s ease-in-out;
  text-decoration: none;
  box-shadow: 
  0 5px 15px rgba(0, 0, 0, 0.2), 
  0 10px 20px rgba(0, 0, 0, 0.2), 
  0 15px 25px rgba(0, 0, 0, 0.1), 
  0 20px 30px rgba(0, 0, 0, 0.1);
}

/* Primary button styles */
.btn-primary {
  color: #4f3f3f;
  background-color: #e9da49;
  border-color: #e9da49;
}

.btn-primary:hover {
  color: #4f3f3f;
  background-color: #ada135;
  border-color: #ada135;
}

/* Secondary button styles */
.btn-secondary {
  color: #4f3f3f;
  background-color: #d6cc4b;
  border-color: #d6cc4b;
}

.btn-secondary:hover {
  color: #4f3f3f;
  background-color: #a9a13b;
  border-color: #a9a13b;
}

/* Small button styles */
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* Table responsive styles */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  /*border-collapse: collapse; /* Ensures no extra lines */
}

.table th,
.table td {
  padding: 0.40rem;
  vertical-align: top;
  border-top: 0px solid #094d91;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #144575;
}

.table tbody + tbody {
  border-top: 2px solid #0f2235;
}

.table-sm th,
.table-sm td {
  padding: 0.2rem;
}

/* Striped columns styling */
.striped-columns td:nth-child(even) {
  background-color: #f2f2f2; /* Light gray background for even columns */
}

.striped-columns td:nth-child(odd) {
  background-color: #ffffff; /* White background for odd columns */
}

.striped-columns th {
  text-align: center;
}

.striped-columns td {
  text-align: right;
}




.hero,
.middle-header {
  display: flex;
  align-items: center;
  max-width: 100%;
}
.middle-header {
  background-color: rgba(255, 255, 255, 0);
  overflow-x: auto;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  box-sizing: border-box;
  gap: 20px;
}
.hero {
  flex-direction: column;
  justify-content: flex-start;
}

body.tenant {
  /* Add a different background image for tenant pages */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85);
  background-size: cover;
  background-position: center;
  color: white;
  font-size: 1.0em;
  min-height: 100%;
  /* Add a black text shadow to improve readability */
  text-shadow: 1px 1px 2px black;
  /* Add a small margin on the left side of the text */
  padding-left: 20px;
}

.bordered {
  /* Add a white border around the image */
  border: 3px solid white;
}

.add-guest-button {
  /* Add some basic button styles */
  display: inline-block;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.add-guest-button:hover {
  /* Add a hover effect */
  background-color: #0099e9;
}

.increment-guest-message-count {
  /* Add some basic button styles */
  display: inline-block;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.increment-guest-message-count:hover {
  /* Add a hover effect */
  background-color: #0099e9;
}

.pricing-button {
  margin-top: 15px; 
  margin-bottom: 30px;
}

button {
  cursor: pointer;
  border: none; /* 'none' is more readable than '0' */
  padding: 8px 20px;
  background-color: var(--color-black);
  color: white;
  border-radius: var(--br-5xs);
  display: inline-flex; /* Use inline-flex to keep the button inline */
  align-items: center; /* Center align items vertically */
  justify-content: center; /* Center align items horizontally */
  white-space: nowrap;
  overflow: hidden; /* Ensure content doesn't overflow */
  text-align: center; /* Center text */
  box-shadow: 
  0 5px 15px rgba(0, 0, 0, 0.2), 
  0 10px 20px rgba(0, 0, 0, 0.2), 
  0 15px 25px rgba(0, 0, 0, 0.1), 
  0 20px 30px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: darkslategrey; /* Example hover effect */
  box-shadow: 
  0 5px 20px rgba(0, 0, 0, 0.3), 
  0 10px 25px rgba(0, 0, 0, 0.3), 
  0 15px 30px rgba(0, 0, 0, 0.2), 
  0 20px 35px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

.scrolling-text {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.scrolling-text h3 {
  display: inline-block;
  margin-top: 10px;
  padding-left: 40%; /* Reduce to faster appearing */
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}



.user-infoline {
  position: absolute;
  right: 20px;
  top: 6px;
  font-size: 0.7em; 
}

.single-block {
  padding: 20px 20px;
  display: block;
  background-color: whitesmoke;
}
.box-block {
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 50px;
}
.ai-container {
  width: 90%;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.block {
  margin-bottom: 20px;
}
.block h1 {
  padding-right: 50px;
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  color: #051b30;
  margin-bottom: 20px;
}
.block p {
  padding-right: 50px;
  font-size: 18px;
  color: #193856;
  margin-top: 10px;
  margin-bottom: 5px;
}

.block h2 {
  padding-right: 50px;
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  color: #051b30;
  margin-bottom: 10px;
}

.block p.text {
  padding-right: 50px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #193856;
}

.block .accordion p {
  padding-left: 10px;
  padding-right: 0px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #193856;
}

.block .join {
  text-align: center;
  width: 90%;
  margin: 50px 0;
}
.block em {
  font-family: "DM Serif Display", serif;
  padding-left: 10px;
  padding-right: 50px;
  font-size: 30px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
}
.accordion {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0px 5px 55px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  width: 90%;
}

.accordion-header {
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 8px;
}

.accordion-header span {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.accordion-body {
  color: #444;
  font-size: 14px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s;
  padding: 0px !important;
}

.accordion-body.active {
  height: 100%;
  opacity: 1;

  padding: 5px;
}

.arrow {
  transition: transform 0.2s linear;
}
.accordion:has(.active) .arrow {
  transform: rotate(180deg);
}

.ai-btn {
  position: relative;
}

.ai-btn:link {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.2s;
  position: absolute;
}

.ai-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ai-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.ai-btn-white {
  background-color: #fff;
  color: #777;
}

.ai-btn-color {
  background-color: #193856;
  color: #fff;
}
.btn-color {
  background-color: #193856;
  color: #fff;
}

.ai-btn-color:hover {
  background-color: #051e36;
  color: #fff;
}
.ai-btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.ai-btn-white::after {
  background-color: #fff;
}

.ai-btn-color::after {
  background-color: #051e36;
}

.ai-btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.ai-btn-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.login-page {
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.login_box {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 50px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgba(55, 59, 136, 1);
  border-radius: 8px;
  overflow: hidden;
  width: 70%;
  min-width: 600px;
}

.login_box .block {
  padding: 50px;
}
.login_box h1 {
  margin: 50px 0 10px;
  font-size: 32px;
  line-height: 35px;
}
.login_box h2 {
  margin: 0 !important;
}
.login_box h1,
.login_box h2 {
  color: #fff;
}
.login_box p {
  color: #fff;
  opacity: 0.8;
}
.login-block {
  background: #fff;
  padding: 50px 50px;
  height: 100%;
}
.login input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin: 5px 0;
  padding: 14px 5px;
  font-size: 12px;
  border-radius: 50px;
  font-family: Raleway, sans-serif;
  outline: 0px;
}

.login input[type="text"],
.login input[type="password"] {
  border: 1px solid #c0c0c0;
  transition: 0.2s;
}

.login input[type="text"]:hover {
  border-color: #f44336;
  transition: all 0.2s ease-in-out;
  outline: 0px;
}

.login input[type="submit"] {
  border: none;
  background: #051e36;
  color: white;
  font-weight: bold;
  transition: 0.2s;
  margin: 20px 0px;
}

.login input[type="submit"]:hover {
  background: #f44336;
}

.login h2 {
  margin: 20px 0 0;
  color: #051e36;
  font-size: 28px;
}

.login .txt {
  margin-bottom: 40px;
  color: #333;
}

.links {
  display: table;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #c0c0c0;
  margin-bottom: 10px;
}

.links a {
  display: table-cell;
  padding-top: 10px;
}

.links a:first-child {
  text-align: left;
}

.links a:last-child {
  text-align: right;
}

.login h2,
.login p,
.login a {
  text-align: center;
}

.login a {
  text-decoration: none;
  font-size: 0.8em;
}

.login a:visited {
  color: inherit;
}

.login a:hover {
  text-decoration: underline;
}

.white-b {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 5px 55px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.flex-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 35px 0 32px;
}
.flex-top .btn {
  margin: 0 10px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust the gap between columns as needed */
}

.pricing-plan {
  flex: 1 1 calc(20% - 20px); /* Five columns on larger screens */
  box-sizing: border-box;
}


@media only screen and (max-width: 768px) {
  body {
    width: 100vw;
  }
  .login_box {
    display: block;
  }
  .login-page {
    display: block;
    padding-bottom: 180px;
  }
  .login_box .block {
    display: none;
  }
  .header {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 0px;
    text-align: center;
    width: 100% !important;
    margin: 0px auto 0;
    box-shadow: 0 5px 55px -30px rgba(0, 0, 0, 0.5);
    top: 0;
  }
  .box-block {
    padding: 50px 20px;
    display: block;
  }
  .block p {
    padding-right: 0 !important;
  }
  .grid-3 {
    display: block;
  }
  .price-box {
    margin-bottom: 20px;
  }
  .btn-color {
    display: none !important;
  }
  .block h1 {
    font-size: 30px !important;
    line-height: 35px !important;
  }
  .accordion {
    width: 100% !important;
  }
  .block em {
    font-size: 20px !important;
    line-height: 25px !important;
  }

  .pricing-plan {
    flex: 1 1 100%; /* Single column on smaller screens */
  }
}

table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
  word-break: break-all;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
    
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}

