@charset "UTF-8";.login {
  display: flex;
}

.wrapper {
  display: flex;
  flex-direction: column;
  flex: 3;
}
.wrapper .loginTitle {
  display: flex;
  width: 100%;
  align-items: center;
  height: 50px;
}
.wrapper .myRow {
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}
.wrapper .left {
  flex: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapper .inputContainer {
  flex: 1;
}
.wrapper .loginButton {
  width: 150px;
  padding: 15px 25px;
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: pointer;
}
.wrapper .google {
  background-color: #df4930;
}
.wrapper .facebook {
  background-color: #507cc0;
}
.wrapper .instagram {
  background-color: black;
}
.wrapper .logout {
  background-color: grey;
}
.wrapper .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.register {
  height: 100%;
  display: flex;
}
.register .formContainer {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.register .formContainer form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.register .formContainer form input {
  padding: 20px;
  border: 1px solid gray;
  border-radius: 5px;
}
.register .formContainer form button {
  padding: 20px;
  border-radius: 5px;
  border: none;
  background-color: teal;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.register .formContainer form button:disabled {
  background-color: #bed9d8;
  cursor: not-allowed;
}
.register .formContainer form span {
  color: rgba(255, 0, 0, 0.591);
}
.register .formContainer form a {
  font-size: 14px;
  color: gray;
  border-bottom: 1px solid gray;
  width: max-content;
}
.register .imgContainer {
  flex: 1;
  background-color: #fcf5f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register .imgContainer img {
  width: 50%;
  height: auto;
  min-width: 180px;
  object-fit: cover;
}/* Toast wrapper positions */
.toast-wrapper {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-wrapper.bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Toast base styles */
.toast {
  display: flex;
  align-items: center;
  min-width: 250px;
  max-width: 350px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Slide in animation */
.toast:not(.closing) {
  opacity: 1;
  transform: translateY(0);
}

/* Closing animation */
.toast.closing {
  opacity: 0;
  transform: translateY(20px);
}

/* Toast type colors */
.toast.info {
  background-color: rgba(30, 144, 255, 0.85);
  color: #fff;
}

.toast.alert {
  background-color: rgba(255, 165, 0, 0.85);
  color: #000;
}

.toast.delete {
  background-color: rgba(220, 20, 60, 0.85);
  color: #fff;
}

.toast.error {
  background-color: rgba(178, 34, 34, 0.85);
  color: #fff;
}

.toast.success {
  background-color: rgba(60, 179, 113, 0.85);
  color: #fff;
}

/* Icon styling */
.toast .icon {
  margin-right: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

/* Message text */
.toast .message-text {
  flex: 1;
}

/* Close button */
.toast .close-btn {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 8px;
  line-height: 1;
}

.toast .close-btn:hover {
  opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .toast-wrapper {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
  .toast {
    min-width: auto;
    max-width: 100%;
    font-size: 13px;
    padding: 10px 14px;
  }
}.toast-wrapper {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-wrapper.bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.toast-wrapper.bottom-right {
  bottom: 20px;
  right: 20px;
}

.toast-wrapper.bottom-left {
  bottom: 20px;
  left: 20px;
}

.toast-wrapper.top-right {
  top: 20px;
  right: 20px;
}

.toast-wrapper.top-left {
  top: 20px;
  left: 20px;
}

.toast-wrapper.top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}.forgot-password {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}
.forgot-password h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.forgot-password form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.forgot-password form div {
  display: flex;
  flex-direction: column;
}
.forgot-password form div label {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.forgot-password form div input {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.forgot-password form div input:focus {
  border-color: #4c9f70;
}
.forgot-password form button {
  padding: 1rem;
  font-size: 1.1rem;
  color: #fff;
  background-color: #4c9f70;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.forgot-password form button:hover {
  background-color: #387c53;
}
.forgot-password form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.forgot-password p {
  text-align: center;
  font-size: 1rem;
  color: #d9534f;
  margin-top: 1rem;
}
@media (max-width: 480px) {
  .forgot-password {
    padding: 1rem;
  }
  .forgot-password h2 {
    font-size: 1.5rem;
  }
  .forgot-password form {
    gap: 1rem;
  }
  .forgot-password button {
    font-size: 1rem;
  }
}.reset-password {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.reset-password h2 {
  text-align: center;
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.reset-password form {
  display: flex;
  flex-direction: column;
}
.reset-password form div {
  margin-bottom: 15px;
}
.reset-password form label {
  font-size: 1rem;
  color: #555;
  margin-bottom: 5px;
  width: 200px;
}
.reset-password form input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}
.reset-password form input:focus {
  border-color: #0066cc;
  outline: none;
}
.reset-password form input::placeholder {
  color: #bbb;
}
.reset-password form button {
  padding: 10px;
  background-color: #0066cc;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.reset-password form button:hover {
  background-color: #005bb5;
}
.reset-password form button:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
.reset-password p {
  text-align: center;
  color: #d9534f;
  font-size: 1rem;
  margin-top: 15px;
}

.detailContainer {
  display: flex;
}
.detailContainer .label {
  width: 200px;
}.login {
  height: 100%;
  display: flex;
}
.login .wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.login .wrapper .loginTitle {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50px;
  flex-shrink: 0;
}
.login .wrapper .myRow {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  height: auto;
}
.login .wrapper .myRow .inputContainer {
  flex: 1;
  display: flex;
}
.login .wrapper .myRow .left, .login .wrapper .myRow .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  width: 100%;
  justify-content: center;
  height: 100%;
}
.login .wrapper .formContainer {
  flex: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .wrapper .formContainer form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login .wrapper .formContainer form input {
  padding: 20px;
  border: 1px solid gray;
  border-radius: 5px;
}
.login .wrapper .formContainer form button {
  padding: 20px;
  border-radius: 5px;
  border: none;
  background-color: teal;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.login .wrapper .formContainer form button:disabled {
  background-color: #BED9D8;
  cursor: not-allowed;
}
.login .wrapper .formContainer form span {
  color: rgba(255, 0, 0, 0.591);
}
.login .wrapper .formContainer form a {
  font-size: 14px;
  color: gray;
  border-bottom: 1px solid gray;
  width: max-content;
}
.login .imgContainer {
  flex: 1;
  background-color: #fcf5f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .imgContainer img {
  width: 50%;
  height: auto;
  object-fit: cover;
  min-width: 180px;
}

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}.searchBarContainer {
  margin-top: 5px;
  display: block;
}
.searchBarContainer .type {
  display: flex;
}
.searchBarContainer .type button {
  /* top | right | bottom | left */
  display: flex;
  flex-direction: row;
  padding: 16px 36px;
  border: 2px solid #999;
  border-bottom: none;
  border-bottom: none;
  cursor: pointer;
  background-color: white;
  color: black;
  text-transform: capitalize;
}
.searchBarContainer .type button.active {
  background-color: black;
  color: white;
}
.searchBarContainer .type button:first-child {
  border-top-left-radius: 5px;
  border-right: none;
}
.searchBarContainer .type button:last-child {
  border-top-right-radius: 5px;
  border-left: none;
}
.searchBarContainer .searchRow {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgb(163, 161, 161);
}
.searchBarContainer .searchRow form {
  border: 1px solid #bdb9b9;
  display: inline-flex;
  justify-content: space-between;
  height: 100%;
  gap: 5px;
  width: 100%;
  align-items: center;
}
@media (max-width: 1366px) {
  .searchBarContainer .searchRow form {
    flex-direction: row;
    border: none;
  }
}
.searchBarContainer .searchRow form .tagColony {
  flex: 7;
  width: 100%;
  height: 100%;
  display: inline;
  float: left;
}
@media (max-width: 767px) {
  .searchBarContainer .searchRow form .tagColony {
    width: auto;
  }
}
.searchBarContainer .searchRow form .priceRange {
  flex: 3;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.searchBarContainer .searchRow form .priceRange .priceRangeInputs {
  flex-grow: 5;
  flex-basis: 0;
  min-width: 0;
  flex-wrap: wrap;
  height: 100%;
  gap: 5px;
  flex: 4;
  display: inline-flex;
  flex-direction: row;
}
.searchBarContainer .searchRow form .priceRange .priceRangeInputs input {
  background-color: rgba(209, 211, 211, 0.667);
  border: 0px solid #1b1a1a;
  min-width: 70px; /* Ensure a minimum width */
  width: auto; /* Remove explicit width overrides */
  flex-grow: 1; /* Allow inputs to grow within the container */
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 5px;
  width: 70px;
  height: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.searchBarContainer .searchRow form .priceRange .searchButton {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  padding: 10px;
  display: inline-flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  cursor: pointer;
  background-color: #fece51;
  justify-content: center; /* Added this */
  align-items: center;
  margin-right: 5px;
}.CompTag {
  width: 100%;
  max-width: 100%;
  font-family: Arial, sans-serif;
  /* background-color: rgb(219, 225, 232); */
  /* min-height: 30px; */
  box-sizing: border-box;
  /* padding: 2px; */
  position: relative;  /* Ensure the container is positioned to allow child elements to be positioned on top */
  /* border: 1px solid black;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */

}

.input-wrapper {
  /* display: flex; */
  display: block;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 5px; */
  /* background-color: bisque; */
  /* border: 2px solid black;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
  width: 100%;
  height: auto;
  box-sizing: border-box;
  position: relative;  /* Set position relative to control stacking order */
  z-index: 10;  /* Make sure input-wrapper is on top */
}

.tags {
  display: flex;
  flex-wrap: wrap;
  /* gap: 5px; */
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  /* margin:2px 2px; */
  border-radius: 5px;
}

.tag {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  /* margin: 0px; */
  margin: 2px 2px;
  background-color: rgb(215, 214, 214);
  padding: 5px;
  border-radius: 5px;
  height: 30px;
  border: 1px solid black;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);

}

.remove-item {
  margin-left: 5px;
  cursor: pointer;
  color: red;
  font-weight: bold;
}

.remove-item:hover {
  color: darkred;
}

.CompTag .input-wrapper input {
  align-items: center;
  background-color: rgba(209, 211, 211, 0.667);
  border: 0px solid #1b1a1a;
  /* padding: 4px; */
  /* border-radius: 4px; */
  /* min-height: 25px; */
  box-sizing: border-box;
  flex-shrink: 0;
  
  width: 100%;

  /* width: 300px; */
  min-height: 20px; 
  padding-left: 2px;
  max-width: 300px!important;
  margin-left: 1px;
  border-radius: 5px;
}

.suggestions-list {
  z-index: 1000;  /* Ensure suggestions list is on top of other elements */
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;  /* Position it above other elements */
  width: 100%;  /* Ensure suggestions take up the full width */
  box-sizing: border-box;
}

.suggestions-list li {
  padding: 8px;
  cursor: pointer;
}

.suggestions-list li:hover {
  background-color: #f0f0f0;
}
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  max-width: 100%;
}

.slider-inner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slide setup */
.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Fade transitions */
.fade-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.fade-slide.active-slide {
  opacity: 1;
  z-index: 1;
}

.fade-slide.inactive-slide {
  opacity: 0;
  z-index: 0;
}

.slide-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text Overlay */
.slide-content-overlay {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.slide-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.slide-description {
  font-size: 1rem;
  margin-top: 5px;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}
.slider-arrow.slider-arrow-left {
  left: 10px;
}
.slider-arrow.slider-arrow-right {
  right: 10px;
}

/* Bullets */
.slider-bullets {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.slider-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.slider-bullet.active-bullet {
  background-color: #fff;
}

.slider-headflash {
  max-width: 100%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  padding: 8px 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  color: rgb(255, 255, 255);
  border-radius: 5px;
  text-align: right;
  font-size: 40px;
  font-family: extraBold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .slider-headflash {
    font-size: 32px; /* Adjust font size for smaller screens */
  }
}

.headflash-fade {
  opacity: 0;
  animation: fadeinout 2s ease-in-out forwards;
}

.slider-headflash.custom-headflash {
  right: 0;
  left: auto; /* Although computed, explicitly setting auto is clearer for intent */
  transform: none;
}

@keyframes fadeinout {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}/* Assuming this path is correct for your project */
/* 1. Ensure HTML, Body, and Root define the viewport and allow scrolling */
html {
  height: 100%; /* Ensures html takes full viewport height */
  overflow-y: auto; /* Prevents horizontal scrollbar from overflow */
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-y: auto; /* CHANGE THIS FROM hidden TO auto */
  overflow-x: hidden;
}

#root {
  min-height: 100%; /* This means at least 100% of body's height */
  display: flex;
  flex-direction: column;
  /* No overflow here, let the body handle it */
}

/* 2. Your .homePage as the main flex container */
.homePage {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  /* height: 100%; - Commented out to prefer min-height: 100vh for main page scroll */
  min-height: 0px;
  /* height: 100%; - Commented out to prefer min-height: 100vh for main page scroll */
  /* REMOVED: overflow:scroll; from homePage as body handles the scroll */
  /* REMOVED: redundant min-height: 0px; */
  /* Target the second direct child of homePage (your empty div for a break) */
  /* If you don't need this empty div for a row break, remove it from your HTML */
}
.homePage .bhoomiBannerad {
  display: flex;
  height: auto;
  width: 100%;
}
.homePage .bannerAds {
  display: flex;
  height: auto;
  width: 100%;
}
.homePage {
  /* Styles for your slider container */
}
.homePage .bhoomiBannerad .slider-container {
  width: 100%;
  flex-shrink: 0;
}
.homePage .bannerAds img {
  object-fit: contain;
}
.homePage {
  /* Styles for your slider container */
}
.homePage .slider-container {
  width: 100%; /* This will always take a full "row" */
  flex-shrink: 0; /* Prevents slider from shrinking if space is tight */
  /* If the images inside the slider should define its height, ensure img has display: block; width: 100%; height: auto; */
}
.homePage {
  /* Styles for your text content container */
}
.homePage .textContainer {
  display: flex;
  flex: 3; /* Takes 3 parts of available horizontal space */
  flex-shrink: 1; /* Allows it to shrink if needed */
  min-width: 300px; /* Ensure it has a minimum width before wrapping */
  /* REMOVED: overflow: auto; as body should handle the scroll, not this individual container */
  /* REMOVED: min-height: 0; as content should naturally push its height */
  background-color: rgba(226, 245, 247, 0.2); /* Light green for debugging */
}
.homePage .textContainer .wrapper {
  padding-right: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  height: auto; /* Let content define height */
}
@media (max-width: 1366px) {
  .homePage .textContainer .wrapper {
    padding-right: 10px;
  }
}
@media (max-width: 1023px) {
  .homePage .textContainer .wrapper {
    padding: 10px;
    /* gap:10px; */
  }
}
@media (max-width: 767px) {
  .homePage .textContainer .wrapper {
    justify-content: flex-start;
  }
}
.homePage .textContainer .wrapper .title {
  font-size: 64px;
  text-align: center;
}
@media (max-width: 1366px) {
  .homePage .textContainer .wrapper .title {
    font-size: 48px;
  }
}
.homePage .textContainer .wrapper .boxes {
  display: flex;
  justify-content: space-between;
  background-color: antiquewhite;
}
.homePage .textContainer .wrapper .boxes h1 {
  font-size: 36px;
}
@media (max-width: 1366px) {
  .homePage .textContainer .wrapper .boxes h1 {
    font-size: 32px;
  }
}
.homePage .textContainer .wrapper .boxes h2 {
  font-size: 20px;
  font-weight: 300;
}
.homePage {
  /* Styles for your image container */
}
.homePage .imgContainer {
  flex: 2; /* Takes 2 parts of available horizontal space */
  flex-shrink: 1; /* Allows it to shrink if needed */
  min-width: 0; /* Allows it to shrink to 0px width if necessary for wrapping */
  overflow: hidden; /* Suitable for containing the image without internal scrollbar */
  background-color: #fcf5f3; /* Your original background color */
  position: relative;
  display: flex;
  align-items: center;
  /* REMOVED: overflow: auto; as body handles the scroll */
  /* REMOVED: min-height: 0; as content should naturally push its height */
}
@media (max-width: 1023px) {
  .homePage .imgContainer {
    display: none;
  }
}
.homePage .imgContainer img {
  width: 115%;
  position: absolute;
  right: 0;
  max-width: none; /* Allow image to be larger than 100% of container */
  height: auto; /* Maintain aspect ratio */
}
@media (max-width: 1366px) {
  .homePage .imgContainer img {
    width: 105%;
  }
}
.homePage .myrow {
  width: 100%;
}.curved-menu {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* You control your content styling externally */
.curved-content {
  transition: all 0.3s ease;
}

.curved-menu.closed .curved-content {
  display: none;
}

/* Curve control wrapper */
.curve-bar-wrapper {
  position: relative;
  width: 100%;
  height: 40px;
  cursor: pointer;
}

/* The curve shape */
.curve-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
}

.curve-svg path {
  transition: fill 0.3s ease;
}

.curve-bar-wrapper:hover path {
  filter: brightness(0.9);
}

/* Icon positioning */
.curve-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  user-select: none;
}
/* styles.css or logo.css */
.logo {
  will-change: transform, opacity;
}

.logo.rotate {
  animation: rotateLogo 3s linear infinite;
}

@keyframes rotateLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo.pulse {
  animation: pulseLogo 1.5s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.logo.pulse {
  animation: pulseLogo 1.5s ease-in-out infinite;
}

.logo.fade {
  animation: fadeLogo 1.5s ease-in-out infinite;
}

@keyframes fadeLogo {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}
.logo.splash {
  animation: splashAnim 1.5s ease-in-out infinite;
}

@keyframes splashAnim {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}.card {
  display: flex;
  padding: 5px;
  gap: 5px;
  border: 2px solid lightgray;
  border-radius: 10px 10px 10px 10px; /* top-left, top-right, bottom-right, bottom-left */
  position: relative;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .card {
    flex-direction: column;
  }
}
.card .selectCheckbox {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  transform: scale(1.2);
  cursor: pointer;
}
.card .imageContainer {
  display: flex;
  flex: 2 1 0%; /* Flex-grow: 2, flex-shrink: 1, flex-basis: 0% */
  width: 100%;
}
.card .imageContainer img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.card .textContainer {
  flex: 3 1 0%; /* Flex-grow: 5, flex-shrink: 1, flex-basis: 0% */
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  border: 2px solid lightgray;
  border-radius: 5px;
  padding: 2px;
  gap: 10px;
  max-width: 100%;
}
.card .textContainer img {
  width: 16px;
  height: 16px;
}
.card .textContainer .title {
  font-size: 20px;
  font-weight: 600;
  color: #444;
  transition: all 0.4s ease;
}
.card .textContainer .title:hover {
  color: #000;
  scale: 1.01;
}
.card .textContainer .address {
  font-size: 14px;
  align-items: center;
  gap: 5px;
  color: #888;
}
.card .textContainer .address img {
  margin-right: 5px;
}
.card .textContainer .tags {
  display: block;
}
.card .textContainer .tags img {
  margin-right: 5px;
  display: inline;
}
.card .textContainer .tags span {
  display: inline;
}
.card .textContainer .price {
  font-size: 20px;
  font-weight: 300;
  padding: 5px;
  border-radius: 5px;
  background-color: rgba(254, 205, 81, 0.438);
}
.card .textContainer .price .features {
  min-width: 200px;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}
.card .textContainer .price .features .feature {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: whitesmoke;
  padding: 5px;
  border-radius: 5px;
}
.card .textContainer .bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.card .textContainer .bottom .icons {
  display: flex;
  gap: 20px;
}
.card .textContainer .bottom .icons .has-messaged {
  background-color: rgb(222, 222, 65);
  border: 1px solid #c3e6cb; /* Darker green border */
}
.card .textContainer .bottom .icons .has-saved {
  background-color: rgb(222, 222, 65);
  border: 1px solid #c3e6cb; /* Darker green border */
}
.card .textContainer .bottom .icons .icon {
  border: 1px solid #999;
  padding: 2px 5px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .textContainer .bottom .icons .icon:hover {
  background-color: lightgray;
}
.card .textContainer .bottom .usertype {
  border: none;
  border-radius: none;
  padding: 2px 2px;
  cursor: pointer;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.card .imageContainer, .card .title div {
  cursor: pointer;
}
.card {
  /* Media query for screens where you want the row layout */
  /* Adjust 1014px to your actual breakpoint where you want the layout to switch */
}
@media (max-width: 767px) {
  .card .card .imageContainer,
  .card .card .textContainer {
    /* Styles for row layout on smaller screens */
    width: 100%; /* Explicitly set width to 100% */
    min-width: auto; /* Allow shrinking below original min-width if necessary */
  }
}

.clientName {
  line-height: 18px;
}.layout {
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.layout .navbar {
  height: 50px;
  flex-shrink: 0;
}
.layout .content {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  box-sizing: border-box;
}.navbar {
  top: 0; /* Position it at the very top */
  left: 0; /* Position it at the very left */
  width: 100%; /* Make it span the full width */
  z-index: 999; /* Give it a high z-index to ensure it stays on top.
   (Your .menuIcon has 999, so let's match or exceed that for the nav itself if necessary,
   but generally a global nav should be higher than internal menu icons.)
   Let's set it to 1000 for clarity. */
}

.navbar .left .logo .logoBox {
  display: flex;
  border: 2px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border-color: yellow;
  border-style: solid;
  background-color: black;
  padding: 2px;
}

nav {
  padding-left: 10px;
  padding-right: 10px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow to visually separate it from content */
}

nav a {
  letter-spacing: 2.8px;
  line-height: 1.6;
  text-transform: uppercase;
  transition: all 0.4s ease;
  z-index: 10;
}

nav a:hover {
  scale: 1.05;
}

nav .left {
  flex: 2;
  display: flex;
  align-items: center;
  width: 300px;
  height: 100%;
}

nav .left .logo {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  max-height: 100%;
}

nav .left .logo img {
  width: 28px;
  max-height: 100%;
}

nav .left .logo .company {
  max-height: 100%;
  font-size: 12px;
  line-height: normal;
}

nav .left .logo .companydesc {
  letter-spacing: 1.2px;
  font-weight: 400;
  max-height: 100%;
  font-size: 10px;
  text-transform: none;
}

@media (max-width: 767px) {
  nav .left .logo .companydesc {
    display: none;
  }
}

nav .middle {
  display: flex;
  flex: 5;
}

nav .middle .links {
  display: flex;
  letter-spacing: 2px;
  align-items: center;
  gap: 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

nav .middle .links a {
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 767px) {
  nav .middle .links {
    display: none;
  }
}

@media (max-width: 1023px) {
  nav .middle .links {
    gap: 10px;
  }
}

nav .middle .links a {
  position: relative;
  z-index: 2;
}

nav .right {
  flex: 2;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  z-index: 10;
}

@media (max-width: 1023px) {
  nav .right {
    flex: none;
    width: 200px;
  }
}

@media (max-width: 767px) {
  nav .right {
    flex: none;
    width: 150px;
  }
}

nav .right .user {
  display: flex;
  flex-direction: row;
  font-weight: bold;
  height: 100%;
  min-width: 140px;
  max-width: 100%;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

nav .right .user img {
  width: 30px;
  height: 30px;
  border-radius: 10%;
  object-fit: cover;
}

nav .right .user .profile {
  position: relative;
  display: flex;
  text-decoration: none;
  align-items: center;
}

nav .right .user .profile .profile-content {
  position: relative;
  display: inline-block;
  padding: 8px; /* Optional spacing */
}

nav .right .user .profile .notification {
  position: absolute;
  top: -2px;
  right: -6px;
  background-color: red;
  color: white;
  border-radius: 50%;
  min-width: 18px;
  min-height: 18px;
  padding: 2px 5px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-sizing: border-box;
}

nav .right .signin,
nav .right .register {
  flex-shrink: 1;
  width: 100%;
  height: 100%;
  background-color: #fece51;
  line-height: 50px;
  text-align: center;
  text-wrap: auto;
  font-weight: 600;
}

@media (max-width: 1023px) {
  nav .right .signin,
  nav .right .register {
    letter-spacing: 1px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  nav .right .signin,
  nav .right .register {
    letter-spacing: 0;
    font-size: 8px;
  }
}

nav .right .menuIcon {
  display: none;
  z-index: 999;
}

nav .right .menuIcon img {
  width: 36px;
  height: 36px;
  cursor: pointer;
}

@media (max-width: 767px) {
  nav .right .menuIcon {
    display: inline;
  }
}

nav .right .menu {
  position: fixed;
  top: 0;
  right: -50%;
  background-color: black;
  color: white;
  height: 100vh;
  width: 50%;
  transition: all 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1;
  line-height: 0.6;
  margin: -20px;
  gap: 20px;
}

nav .right .menu.active {
  right: 0;
}

@media (max-width: 767px) {
  nav .right .menu a {
    display: initial;
  }
}.adminnavbar {
  top: 0; /* Position it at the very top */
  left: 0; /* Position it at the very left */
  width: 100%; /* Make it span the full width */
  z-index: 999; /* Give it a high z-index to ensure it stays on top.
   (Your .menuIcon has 999, so let's match or exceed that for the nav itself if necessary,
   but generally a global nav should be higher than internal menu icons.)
   Let's set it to 1000 for clarity. */
}

.adminnavbar {
  padding-left: 5px;
  padding-right: 5px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow to visually separate it from content */
}
.adminnavbar a {
  letter-spacing: 2.8px;
  line-height: 1.6;
  text-transform: uppercase;
  transition: all 0.4s ease;
  z-index: 10;
}
.adminnavbar a:hover {
  scale: 1.05;
}
.adminnavbar .left {
  flex: 2;
  display: flex;
  align-items: center;
  width: 300px;
  height: 100%;
}
.adminnavbar .left .logo {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  max-height: 100%;
}
.adminnavbar .left .logo img {
  width: 28px;
  max-height: 100%;
}
.adminnavbar .left .logo .company {
  max-height: 100%;
  font-size: 12px;
  line-height: normal;
}
.adminnavbar .left .logo .companydesc {
  letter-spacing: 1.2px;
  font-weight: 400;
  max-height: 100%;
  font-size: 10px;
  text-transform: none;
}
@media (max-width: 767px) {
  .adminnavbar .left .logo .companydesc {
    display: none;
  }
}
.adminnavbar .middle {
  background-color: lightcoral;
  display: flex;
  height: 100%;
  flex: 5;
}
.adminnavbar .middle .links {
  display: flex;
  letter-spacing: 2px;
  align-items: center;
  gap: 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.adminnavbar .middle .links a {
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .adminnavbar .middle .links {
    display: none;
  }
}
@media (max-width: 1023px) {
  .adminnavbar .middle .links {
    gap: 10px;
  }
}
.adminnavbar .middle .links a {
  position: relative;
  z-index: 2;
}
.adminnavbar .right {
  flex: 2;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  z-index: 10;
}
.adminnavbar .right .user {
  display: flex;
  flex-direction: row;
  font-weight: bold;
  height: 100%;
  min-width: 140px;
  max-width: 100%;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}
.adminnavbar .right .user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 5px;
}
.adminnavbar .right .user .profile {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.adminnavbar .right .user .profile .profile-content {
  position: relative;
  display: inline-block;
  padding: 8px; /* Optional spacing */
}
.adminnavbar .right .user .profile .notification {
  position: absolute;
  top: -2px;
  right: -6px;
  background-color: red;
  color: white;
  border-radius: 50%;
  min-width: 18px;
  min-height: 18px;
  padding: 2px 5px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-sizing: border-box;
}
.adminnavbar .right .signin,
.adminnavbar .right .register {
  flex-shrink: 1;
  width: 100%;
  height: 100%;
  background-color: #fece51;
  line-height: 50px;
  text-align: center;
  text-wrap: auto;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .adminnavbar .right .signin,
  .adminnavbar .right .register {
    letter-spacing: 1px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .adminnavbar .right .signin,
  .adminnavbar .right .register {
    letter-spacing: 0;
    font-size: 8px;
  }
}
.adminnavbar .right .menuIcon {
  display: none;
  z-index: 999;
}
.adminnavbar .right .menuIcon img {
  width: 36px;
  height: 36px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .adminnavbar .right .menuIcon {
    display: inline;
  }
}
.adminnavbar .right .menu {
  position: fixed;
  top: 0;
  right: -50%;
  background-color: black;
  color: white;
  height: 100vh;
  width: 50%;
  transition: all 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1;
  line-height: 0.6;
  margin: -20px;
  gap: 20px;
}
.adminnavbar .right .menu.active {
  right: 0;
}
@media (max-width: 767px) {
  .adminnavbar .right .menu a {
    display: initial;
  }
}
.chatbot-fixed-container {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 99999;
}
.chatbot-fixed-container .chat-window {
  width: 350px;
  height: 500px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.chatbot-fixed-container .chat-window .chat-header {
  background-color: #2563eb;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-fixed-container .chat-window .chat-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* ✅ Container for alignment */
}
.chatbot-fixed-container .chat-window .chat-body .bubble-container {
  display: flex;
  width: 100%;
}
.chatbot-fixed-container .chat-window .chat-body .bubble-container.bot {
  justify-content: flex-start;
}
.chatbot-fixed-container .chat-window .chat-body .bubble-container.bot .bubble {
  background-color: #f1f5f9;
  color: #1e293b;
  border-bottom-left-radius: 2px;
}
.chatbot-fixed-container .chat-window .chat-body .bubble-container.user {
  justify-content: flex-end;
}
.chatbot-fixed-container .chat-window .chat-body .bubble-container.user .bubble {
  background-color: #2563eb;
  color: white;
  border-bottom-right-radius: 2px;
}
.chatbot-fixed-container .chat-window .chat-body .bubble-container .bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.4;
}
.chatbot-fixed-container .chat-window .chat-body .bubble-container .bubble.typing {
  font-style: italic;
  opacity: 0.7;
}
.chatbot-fixed-container .chat-window .chat-footer {
  padding: 15px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 8px;
}
.chatbot-fixed-container .chat-window .chat-footer input {
  flex: 1;
  padding: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
}
.chatbot-fixed-container .chat-window .chat-footer input:disabled {
  background: #f8fafc;
}
.chatbot-fixed-container .chat-window .chat-footer button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  /* ✅ Disabled State Styling */
}
.chatbot-fixed-container .chat-window .chat-footer button:disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
}
.chatbot-fixed-container .launcher {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}.clientContactCard {
  border: 1px solid #ddd;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
}

.clientContactCard h3 {
  margin: 0 0 6px;
}

.ClientContactListContainer {
  height: calc(100vh - 200px);
}

.dataContainer {
  height: calc(100vh - 250px);
  overflow-y: auto;
}

.clientContactListPage .buttonContainer {
  padding: 5px;
  display: flex;
  margin-top: 10px;
}

.ClientContactSearch {
  padding: 12px 16px;
}.clientContactCard {
  position: relative;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  cursor: pointer;
}

.contactCheckbox {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 10;
}.dashboardHeader {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  z-index: 900;
  position: relative;
}

.menuToggleIcon {
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 901;
  margin-right: 12px;
}

.dashboardTitle {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}.SearchList {
  width: 100%;
}
.SearchList .SearchInputWrapper {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}
.SearchList .SearchInputWrapper input {
  width: 100%;
  padding: 10px 14px 10px 42px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  background-color: #fff;
  transition: 0.2s ease;
}
.SearchList .SearchInputWrapper input:focus {
  outline: none;
  border-color: #5b5b5c;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.SearchList .SearchInputWrapper .SearchIcon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9fa0a1;
  pointer-events: none;
}

.SearchList {
  position: relative;
}

.SearchResultsOverlay {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 95%;
  height: 200px;
  background-color: rgb(220, 215, 215);
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
  padding: 6px;
}

.SearchResultRow {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  background: white;
  font-size: 13px;
  line-height: 1.4;
}
.SearchResultRow:hover {
  background: #eef2ff;
}
.SearchResultRow + .SearchResultRow {
  margin-top: 6px;
}

.Loading,
.NoResults {
  padding: 12px;
  font-size: 13px;
  color: #6b7280;
}
.pageContent {
  height: calc(100vh - 160px);
  overflow-y: auto;
}

.SaveContactPage .FormContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.FormRow {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 1/3 width */
.FormRow label {
  flex: 1;
  font-weight: 600;
  color: #333;
}

/* 2/3 width */
.FormRow .inputCol {
  flex: 2;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* 📱 Mobile: stack */
@media (max-width: 600px) {
  .FormRow {
    flex-direction: column;
    align-items: stretch;
  }
  .FormRow label,
  .FormRow input {
    flex: none;
  }
  .inputCol input {
    width: 100%;
  }
}
.SaveContactPage input {
  width: 100%;
}

.SaveContactPage .buttonContainer {
  padding: 5px;
  gap: 10px;
  display: flex;
}
.CollapsibleContainer {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  position: relative;
}

/* ================= HEADER ================= */
.CollapsibleHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  background: #969595;
  user-select: none;
}

.CollapsibleHeader h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}

.Arrow {
  transition: transform 0.25s ease;
  font-size: 18px;
}

.Arrow.open {
  transform: rotate(180deg);
}

.RightContent {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================= BODY ================= */
/* 🔑 Controls layout + hiding */
.CollapsibleBody {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

/* 🔑 Expanded state */
.CollapsibleBody.open {
  height: auto;
  overflow: visible;
}

/* 🔑 Inner content wrapper */
.CollapsibleInner {
  padding: 16px;
  position: relative;
  overflow: visible;
}.MultiValueInput {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.MultiValueInput input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.ValueList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ValueItem {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f2f2f2;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 13px;
}

.ValueItem button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}.RequirementList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100vh - 160px);
  overflow-y: hidden;
}

.requirementDataList {
  height: calc(100vh - 160px);
  overflow-y: auto;
}

.RequirementListPage .SearchResults {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.RequirementListPage .buttonContainer {
  display: flex;
}.requirementCard {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 2px solid lightgray;
  border-radius: 10px 10px 10px 10px; /* top-left, top-right, bottom-right, bottom-left */
  padding-left: 5px;
}
.requirementCard .reqRow {
  display: flex;
  flex-direction: row;
}
.requirementCard .reqCol1 {
  display: flex;
  font-weight: bold;
  flex: 1;
}
.requirementCard .reqCol2 {
  display: flex;
  flex: 4;
}
.SaveRequirementPage .FormContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 5px;
}

.PageContent {
  height: calc(100vh - 160px);
  overflow-y: auto;
}

.FormRow {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 1/3 width */
.FormRow label {
  flex: 1;
  font-weight: 600;
  color: #333;
}

/* 2/3 width */
.FormRow .inputCol {
  flex: 2;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.details input {
  width: 100%;
}

.inputCol {
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 8px;
}

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

.formatted {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.separator {
  align-self: center;
}

/* 📱 Mobile: stack */
@media (max-width: 600px) {
  .FormRow {
    flex-direction: column;
    align-items: stretch;
  }
  .FormRow label,
  .FormRow input {
    flex: none;
  }
}
.SaveRequirementPage .buttonContainer {
  display: flex;
}.contactSearchWrapper {
  width: 100%;
  height: 200px;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.searchArea {
  position: relative;
}

.searchRow {
  display: flex;
  gap: 8px;
  width: 100%;
}

.searchRow input {
  flex: 0 0 80%;
  width: 80%;
  padding: 8px 10px;
}

.searchRow button {
  flex: 0 0 20%;
  width: 20%;
  white-space: nowrap;
}

.suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 80%;
  background: #fff;
  z-index: 9999;
  border-radius: 6px;
  border: 1px solid #ddd;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.selectedContacts {
  margin-top: 16px;
  max-height: 300px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

.selectedCardWrapper {
  position: relative;
  margin-bottom: 8px;
}

.selectedCardWrapper .removeIcon {
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
  font-weight: bold;
  color: red;
}

.selectedContacts .clientContactCard {
  background-color: rgb(206, 205, 202);
}.tabs-container {
  height: calc(100dvh - 160px);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tabs-container .tab-headers {
  display: flex;
  border-bottom: 2px solid #ddd;
}
.tabs-container .tab-headers .tab-button {
  background: none;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  color: #333;
}
.tabs-container .tab-headers .tab-button:hover {
  color: #007bff;
}
.tabs-container .tab-headers .tab-button.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
}
.tabs-container .tab-content {
  height: calc(100dvh - 200px);
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fff;
}/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}
.colonyCard {
  display: flex;
  flex-direction: row;
  gap: 10px;
  border: 2px solid lightgray;
  border-radius: 5px; /* top-left, top-right, bottom-right, bottom-left */
  padding: 5px;
}
@media (max-width: 767px) {
  .colonyCard {
    flex-wrap: wrap;
  }
}
.colonyCard {
  cursor: pointer;
}
.colonyCard .firstCol {
  display: flex;
  border: 2px solid gray;
  border-radius: 5px;
  padding: 5px;
  flex: none;
  width: 400px;
  height: 200px;
}
@media (max-width: 767px) {
  .colonyCard .firstCol {
    width: 100%;
  }
}
.colonyCard .map {
  width: 100%;
  height: 100%;
}
.colonyCard .secondCol {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.colonyName {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.colonyCity {
  display: flex;
  flex-direction: row;
  gap: 82px;
}.popupContainer {
  display: flex;
  gap: 20px;
}
.popupContainer img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 5px;
}
.popupContainer .textContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}.colonyListPage {
  padding: 5px;
  width: 100%;
  height: calc(100dvh - 220px);
}

.colonyListContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 300px;
  overflow-y: auto;
  gap: 10px;
  overflow-y: auto;
}.masterColonyPage {
  padding: 5px;
  width: 100%;
  height: calc(100dvh - 60px);
}.pendingTab {
  height: calc(100dvh - 60px);
  overflow-y: auto;
}

ul.scrollable {
  max-height: 200px; /* adjust as needed */
  overflow-y: auto; /* vertical scroll */
  padding: 0;
  margin: 0;
  list-style: none;
}

.status {
  font-weight: bold;
}

.status.approved {
  background-color: green;
}

.status.rejected {
  background-color: red;
}

.status.pending {
  background-color: orange;
}

ul.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
  list-style: none;
}

li {
  border: 1px solid #ddd;
  padding: 8px;
  background: #f9f9f9;
}.masterColonyPage {
  height: calc(100dvh - 150px);
  overflow-y: auto;
}
.masterColonyPage .wrapper {
  display: flex;
  gap: 10px;
}

.row {
  display: flex;
  flex-direction: row;
  height: auto;
}
.row label {
  flex: 2;
}
.row .rowVal {
  flex: 3;
}

.row.map .rowVal {
  height: 200px;
}.apartmentPage {
  background-color: yellow;
  height: calc(100vh - 60px);
  overflow-y: hidden;
}
.apartmentPage .tabContainer {
  height: 100%;
}
.apartmentPage .tabContainer .tabs-container {
  height: 100%;
}.pasteText {
  width: 100%;
  padding: 10px;
}

.myLogs {
  height: "200px";
  overflow-y: "auto";
  background-color: "#f8f9fa";
  padding: "10px";
}

.importPage {
  height: 100dvh;
  overflow-y: hidden;
}

.pageContent {
  height: calc(100vh - 160px);
  overflow-y: auto;
}

.buttonContainer {
  display: flex;
  gap: 10px;
}
.profile-container {
  flex: 0 0 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advertisement-container {
  flex: 0 0 30%;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 300px !important;
  object-fit: cover;
}

/* 2️⃣ Profile rows with wrapping */
.profile-row {
  display: flex;
  gap: 10px;
  height: auto;
}

.second-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 200px;
}
.second-row .third-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 200px;
}
@media (max-width: 1023px) {
  .second-row {
    flex-wrap: wrap;
    flex-direction: row;
    height: auto; /* Adjust height for stacked layout */
    width: 100%; /* This removes the previously large fixed width */
  }
}
@media (max-width: 767px) {
  .second-row {
    flex-wrap: wrap;
    flex-direction: row;
    height: auto; /* Adjust height for stacked layout */
    width: 100%; /* This removes the previously large fixed width */
  }
}

.second-row.profile-flex {
  flex-direction: row;
  height: auto;
}

/* 3️⃣ Profile image and details side-by-side */
.profile-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 10px;
}

/* 4️⃣ Description and postlist as two columns */
.profile-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.profile-description {
  flex: 1 1 50%;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  height: 200px;
  width: 100%;
  overflow-y: auto;
}

.postlist {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 220px;
  overflow-y: auto;
}

/* 5️⃣ Responsive adjustments for smaller screens */
@media (max-width: 1023px) {
  .profile-container,
  .advertisement-container {
    flex: 1 1 100%;
  }
  .profile-flex,
  .profile-row {
    flex-direction: column;
  }
}
.profile-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  text-align: center;
}
.profile-image img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 20px 5px;
}
.details-row {
  display: flex;
  gap: 10px;
  height: auto;
}
.details-row .fcol {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}
.details-row .scol {
  display: flex;
  flex: 1;
  gap: 10px;
}

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

.myrow {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.profile-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.profile-page .slide-image {
  object-fit: contain;
}

.profile-page .profile-content {
  height: calc(100dvh - 100px);
  display: flex;
  gap: 20px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 1023px) {
  .profile-page .profile-content {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .profile-page .profile-content {
    flex-wrap: wrap;
  }
}

.profile-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}.CommItem .btnContent {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.CommItem .btnContent .btnIcon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.CommItem .btnContent .btnDisplay {
  font-size: 12px;
  color: rgb(0, 0, 0);
}
@media (max-width: 1023px) {
  .CommItem .btnContent .btnDisplay {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .CommItem .btnContent .btnDisplay {
    font-size: 8px;
  }
}/* .shareButton {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.shareButton:hover {
  background-color: #0056b3;
}

.shareButton:active {
  transform: scale(0.97);
}

.shareButton:disabled {
  background-color: #ccc;
  cursor: not-allowed;
} */

.iconImage {
  width: 24px;
  height: 24px;
}

.postRow {
  height: 100%;
  width: 100%;
}

.postcols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.postcols .firstCol {
  display: flex;
  flex: 4;
}
.postcols .secondCol {
  flex: 1;
  display: flex;
}
@media (max-width: 767px) {
  .postcols .firstCol,
  .postcols .secondCol {
    flex-basis: 100%;
    width: auto; /* Or remove the width property entirely */
  }
}

.displayPostPage {
  display: flex;
  height: 100%;
  padding-bottom: 10px;
  flex-direction: column;
}
.displayPostPage .postContainer {
  display: flex;
  height: calc(100dvh - 100px);
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
}
@media (max-width: 1023px) {
  .displayPostPage .postContainer {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .displayPostPage .postContainer {
    width: 100%;
  }
}
.displayPostPage .buttons {
  display: flex;
  gap: 5px;
}
.displayPostPage .buttons button {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  cursor: pointer;
}
.displayPostPage .buttons button img {
  width: 16px;
  height: 16px;
}
.displayPostPage .advertisementContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 1023px) {
  .displayPostPage .advertisementContainer {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .displayPostPage .advertisementContainer {
    width: 100%;
  }
}

.firstCol {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
@media (max-width: 1023px) {
  .firstCol {
    margin-bottom: 50px;
  }
}

.secondCol {
  display: flex;
  height: auto;
  overflow-y: auto;
  margin-bottom: 5px;
}
@media (max-width: 1023px) {
  .secondCol {
    margin-bottom: 5px;
  }
}

.firstCol .PostImageswrapper {
  padding-right: 5px;
  width: 100%;
  height: auto;
}
@media (max-width: 1366px) {
  .firstCol .PostImageswrapper {
    padding-right: 5px;
  }
}
@media (max-width: 1023px) {
  .firstCol .PostImageswrapper {
    padding-right: 2px;
  }
}
.firstCol .PostImageswrapper .mapContainer {
  width: 100%;
  height: 200px;
  position: relative; /* Leaflet needs positioning context */
  min-height: 200px; /* ensures it never collapses */
  z-index: 10000; /* so controls aren’t hidden */
  overflow: hidden; /* keeps tiles from overflowing */
}

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

.firstCol .Descriptionwrapper .info {
  margin-top: 5px;
}
.firstCol .Descriptionwrapper .info .post {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.firstCol .Descriptionwrapper .info .post h1 {
  font-weight: 400;
}
.firstCol .Descriptionwrapper .info .post .address {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #888;
  font-size: 14px;
}
.firstCol .Descriptionwrapper .info .post .address img {
  width: 16px;
  height: 16px;
}
.firstCol .Descriptionwrapper .info .post .price {
  padding: 5px;
  background-color: rgba(254, 205, 81, 0.438);
  border-radius: 5px;
  width: max-content;
  font-size: 20px;
  font-weight: 300;
}

.bottom {
  margin-top: 5px;
  color: #555;
  line-height: 10px;
}

.postUser {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: black;
  gap: 10px;
  border-radius: 10px;
  font-weight: 600;
}
.postUser .userButton {
  display: flex;
  flex-direction: row;
  height: 100px;
  align-items: center;
  flex: 2;
  background-color: #ffff00;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
}
.postUser .userButton .user {
  background-color: transparent;
}
.postUser .userButton .userCompany {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}
.postUser .userButton .userCompany span {
  width: 100%;
  text-align: center;
}
.postUser .userComm {
  flex: 3;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.postUser .userComm .CommItem {
  width: 100%;
}
@media (max-width: 767px) {
  .postUser {
    padding: 20px 50px;
  }
}
.postUser button {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
}
.postUser button span {
  display: flex;
  flex-direction: row;
  width: 100%;
  text-align: center;
}
.postUser img {
  width: 50px;
  height: 50px;
  border-radius: 5%;
  object-fit: cover;
}

.sizes {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1366px) {
  .sizes {
    font-size: 12px;
  }
}
.sizes .size {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

.displayPostPage .slide-image {
  object-fit: contain;
}.slider {
  width: 100%;
  height: 250px;
}
@media (max-width: 767px) {
  .slider {
    height: 280px;
  }
}
.slider .fullImageContainer {
  height: 100%;
  display: flex;
  gap: 5px;
  width: 100%;
}
.slider .fullImageContainer .fullSlider {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}
.slider .fullImageContainer .fullSlider .arrow {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider .fullImageContainer .fullSlider .arrow img {
  width: 50px;
}
@media (max-width: 1023px) {
  .slider .fullImageContainer .fullSlider .arrow img {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .slider .fullImageContainer .fullSlider .arrow img {
    width: 20px;
  }
}
.slider .fullImageContainer .fullSlider .arrow img.right {
  transform: rotate(180deg);
}
.slider .fullImageContainer .fullSlider .imgContainer {
  flex: 10;
}
.slider .fullImageContainer .fullSlider .imgContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .fullImageContainer .fullSlider .close {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  font-size: 36px;
  font-weight: bold;
  padding: 50px;
  cursor: pointer;
}
.slider .fullImageContainer .bigImage {
  flex: 3;
  height: 100%;
}
@media (max-width: 767px) {
  .slider .fullImageContainer .bigImage {
    flex: 2;
  }
}
.slider .fullImageContainer .bigImage img {
  width: 100%;
  object-fit: cover;
  margin-right: 10px;
}
.slider .fullImageContainer .SmallImagesContainer {
  flex: 1;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.slider .fullImageContainer .smallImages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .slider .fullImageContainer .smallImages {
    flex: 1;
  }
}
.slider .fullImageContainer .smallImages img {
  width: 100%;
  height: 40%;
  object-fit: cover;
  margin-right: 2px;
}
.slider img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}

/* You can still add the scrollbar styling as suggested before */
.smallImages::-webkit-scrollbar {
  width: 10px; /* Adjust the width as needed for visibility */
}

.smallImages::-webkit-scrollbar-track {
  background-color: #a6ab87; /* A light gray background for the track */
}

.smallImages::-webkit-scrollbar-thumb {
  background-color: #b0aaaa; /* A shade of gray, you can choose any color */
  border-radius: 15px; /* Optional: makes the thumb rounded */
}.map {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}/* .shareButton {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.shareButton:hover {
  background-color: #0056b3;
}

.shareButton:active {
  transform: scale(0.97);
}

.shareButton:disabled {
  background-color: #ccc;
  cursor: not-allowed;
} */
.listPage {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
@media (max-width: 1023px) {
  .listPage {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .listPage {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.listPage .mapContainer {
  /* Styles for column layout on larger screens */
  display: flex;
  flex-direction: row;
  flex: 2 1 0%; /* Flex-grow: 2, flex-shrink: 1, flex-basis: 0% */
  min-width: 250px;
  height: 100%;
  background-color: #fcf5f3;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .listPage .mapContainer {
    display: none !important;
  }
}

.listPage .listContainer {
  display: flex;
  flex-direction: column;
  /* Styles for column layout on larger screens */
  flex: 5 1 0%; /* Flex-grow: 5, flex-shrink: 1, flex-basis: 0% */
  overflow-y: hidden;
  height: 100%;
}
.listPage .listContainer .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

.listContainer {
  overflow-y: auto;
  position: relative;
}

.listPage .listContainer .wrapper .cardList {
  flex: 1;
  border: 1px solid #ccc;
  width: 100%;
  height: calc(100vh - 260px);
  /* Prevent the flex item from growing */
  flex-grow: 0;
  /* Prevent the flex item from shrinking below its specified size */
  flex-shrink: 0;
  /* Tell the flex container to consider the element's content size or explicit height */
  flex-basis: auto;
  /* Your desired fixed height */
  /* Add scrollbars if content overflows the 100px height */
  overflow-y: auto;
}

.listPage .listContainer .wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* --- Webkit (Chrome, Safari, Edge) Scrollbar Styles --- */
/* Target the scrollbar itself */
.listPage::-webkit-scrollbar {
  width: 10px; /* Set the width of the vertical scrollbar */
  /* height: 10px; If you had a horizontal scrollbar and wanted to style its height */
}

/* Style the draggable part of the scrollbar (the thumb) */
.listPage::-webkit-scrollbar-thumb {
  background-color: #888; /* Example: Dark gray */
  border-radius: 5px; /* Optional: Round the corners */
  border: 1px solid #f1f1f1; /* Optional: Add a border */
}

/* Styles for the scrollbar track */
.listPage .listContainer .wrapper::-webkit-scrollbar {
  width: 10px; /* Adjust the width as needed for visibility */
}

/* Styles for the draggable scrollbar thumb */
.listPage .listContainer .wrapper::-webkit-scrollbar-thumb {
  background-color: #888; /* A shade of gray, you can choose any color */
  border-radius: 5px; /* Optional: makes the thumb rounded */
}

/* Styles for the scrollbar track when the thumb is not present or being dragged (optional) */
.listPage .listContainer .wrapper::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* A light gray background for the track */
}

.ListPageAds {
  flex-shrink: 0;
}

.FilterContainer {
  flex-shrink: 0;
}

.ListPageAds img {
  object-fit: contain;
}.filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgb(234, 231, 231);
  padding: 5px;
  border-radius: 5px;
  overflow-y: auto;
  height: 150px;
}
@media (max-width: 1023px) {
  .filter {
    height: 100px;
    overflow-y: scroll;
  }
}
@media (max-width: 767px) {
  .filter {
    height: 100px;
    overflow-y: scroll;
  }
}
.filter h1 {
  font-weight: 300;
  font-size: 24px;
}
.filter .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.filter .item label {
  font-size: 10px;
}
.filter .item select {
  min-width: 150px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
}
@media (max-width: 1023px) {
  .filter .item select {
    width: 80px;
  }
}
.filter .item input {
  width: 100px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
}
@media (max-width: 1023px) {
  .filter .item input {
    width: 80px;
  }
}
.filter .value input {
  width: 90px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
}
.filter .firstRow input {
  width: 100%;
}
.filter .secondRow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.filter .row.sixth button {
  width: 70px;
  padding: 10px;
  border: none;
  cursor: pointer;
  background-color: #fece51;
}
.filter .row.sixth button img {
  width: 24px;
  height: 24px;
}.listPage {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}
@media (max-width: 1023px) {
  .listPage {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .listPage {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.listPage .mapContainer {
  /* Styles for column layout on larger screens */
  display: flex;
  flex-direction: row;
  flex: 2 1 0%; /* Flex-grow: 2, flex-shrink: 1, flex-basis: 0% */
  min-width: 250px;
  height: 100%;
  background-color: #fcf5f3;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .listPage .mapContainer {
    display: none !important;
  }
}

.listPage .listContainer {
  display: flex;
  flex-direction: column;
  /* Styles for column layout on larger screens */
  flex: 5 1 0%; /* Flex-grow: 5, flex-shrink: 1, flex-basis: 0% */
  overflow-y: hidden;
  height: 100%;
}
.listPage .listContainer .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

.listContainer {
  overflow-y: auto;
  position: relative;
}

.listPage .listContainer .wrapper .cardList {
  flex: 1;
  border: 1px solid #ccc;
  width: 100%;
  height: calc(100vh - 260px);
  /* Prevent the flex item from growing */
  flex-grow: 0;
  /* Prevent the flex item from shrinking below its specified size */
  flex-shrink: 0;
  /* Tell the flex container to consider the element's content size or explicit height */
  flex-basis: auto;
  /* Your desired fixed height */
  /* Add scrollbars if content overflows the 100px height */
  overflow-y: auto;
}

.listPage .listContainer .wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* --- Webkit (Chrome, Safari, Edge) Scrollbar Styles --- */
/* Target the scrollbar itself */
.listPage::-webkit-scrollbar {
  width: 10px; /* Set the width of the vertical scrollbar */
  /* height: 10px; If you had a horizontal scrollbar and wanted to style its height */
}

/* Style the draggable part of the scrollbar (the thumb) */
.listPage::-webkit-scrollbar-thumb {
  background-color: #888; /* Example: Dark gray */
  border-radius: 5px; /* Optional: Round the corners */
  border: 1px solid #f1f1f1; /* Optional: Add a border */
}

/* Styles for the scrollbar track */
.listPage .listContainer .wrapper::-webkit-scrollbar {
  width: 10px; /* Adjust the width as needed for visibility */
}

/* Styles for the draggable scrollbar thumb */
.listPage .listContainer .wrapper::-webkit-scrollbar-thumb {
  background-color: #888; /* A shade of gray, you can choose any color */
  border-radius: 5px; /* Optional: makes the thumb rounded */
}

/* Styles for the scrollbar track when the thumb is not present or being dragged (optional) */
.listPage .listContainer .wrapper::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* A light gray background for the track */
}

.ListPageAds {
  flex-shrink: 0;
}

.FilterContainer {
  flex-shrink: 0;
}

.ListPageAds img {
  object-fit: contain;
}.projectCard {
  display: flex;
  padding: 5px;
  gap: 5px;
  border: 2px solid lightgray;
  border-radius: 10px 10px 10px 10px; /* top-left, top-right, bottom-right, bottom-left */
  position: relative;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .projectCard {
    flex-direction: column;
  }
}
.projectCard .selectCheckbox {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  transform: scale(1.2);
  cursor: pointer;
}
.projectCard .imageContainer {
  display: flex;
  flex: 2 1 0%; /* Flex-grow: 2, flex-shrink: 1, flex-basis: 0% */
  width: 100%;
}
.projectCard .imageContainer img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.projectCard .textContainer {
  flex: 3 1 0%; /* Flex-grow: 5, flex-shrink: 1, flex-basis: 0% */
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  border: 2px solid lightgray;
  border-radius: 5px;
  padding: 2px;
  gap: 10px;
  max-width: 100%;
}
.projectCard .textContainer img {
  width: 16px;
  height: 16px;
}
.projectCard .textContainer .title {
  font-size: 20px;
  font-weight: 600;
  color: #444;
  transition: all 0.4s ease;
}
.projectCard .textContainer .title:hover {
  color: #000;
  scale: 1.01;
}
.projectCard .textContainer .address {
  font-size: 14px;
  align-items: center;
  gap: 5px;
  color: #888;
}
.projectCard .textContainer .address img {
  margin-right: 5px;
}
.projectCard .textContainer .tags {
  display: block;
}
.projectCard .textContainer .tags img {
  margin-right: 5px;
  display: inline;
}
.projectCard .textContainer .tags span {
  display: inline;
}
.projectCard .textContainer .price {
  font-size: 20px;
  font-weight: 300;
  padding: 5px;
  border-radius: 5px;
  background-color: rgba(254, 205, 81, 0.438);
}
.projectCard .textContainer .price .features {
  min-width: 200px;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}
.projectCard .textContainer .price .features .feature {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: whitesmoke;
  padding: 5px;
  border-radius: 5px;
}
.projectCard .textContainer .bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.projectCard .textContainer .bottom .icons {
  display: flex;
  gap: 20px;
}
.projectCard .textContainer .bottom .icons .has-messaged {
  background-color: rgb(222, 222, 65);
  border: 1px solid #c3e6cb; /* Darker green border */
}
.projectCard .textContainer .bottom .icons .has-saved {
  background-color: rgb(222, 222, 65);
  border: 1px solid #c3e6cb; /* Darker green border */
}
.projectCard .textContainer .bottom .icons .icon {
  border: 1px solid #999;
  padding: 2px 5px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projectCard .textContainer .bottom .icons .icon:hover {
  background-color: lightgray;
}
.projectCard .textContainer .bottom .usertype {
  border: none;
  border-radius: none;
  padding: 2px 2px;
  cursor: pointer;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.projectCard .imageContainer, .projectCard .title div {
  cursor: pointer;
}
.projectCard {
  /* Media query for screens where you want the row layout */
  /* Adjust 1014px to your actual breakpoint where you want the layout to switch */
}
@media (max-width: 767px) {
  .projectCard .card .imageContainer,
  .projectCard .card .textContainer {
    /* Styles for row layout on smaller screens */
    width: 100%; /* Explicitly set width to 100% */
    min-width: auto; /* Allow shrinking below original min-width if necessary */
  }
}

.clientName {
  line-height: 18px;
}.projectfilter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgb(234, 231, 231);
  padding: 5px;
  border-radius: 5px;
  overflow-y: auto;
  height: 150px;
}
@media (max-width: 1023px) {
  .projectfilter {
    height: 100px;
    overflow-y: scroll;
  }
}
@media (max-width: 767px) {
  .projectfilter {
    height: 100px;
    overflow-y: scroll;
  }
}
.projectfilter h1 {
  font-weight: 300;
  font-size: 24px;
}
.projectfilter .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.projectfilter .item label {
  font-size: 10px;
}
.projectfilter .item select {
  min-width: 150px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
}
@media (max-width: 1023px) {
  .projectfilter .item select {
    width: 80px;
  }
}
.projectfilter .item input {
  width: 100px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
}
@media (max-width: 1023px) {
  .projectfilter .item input {
    width: 80px;
  }
}
.projectfilter .value input {
  width: 90px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
}
.projectfilter .row.third .item input {
  width: 100%;
}
.projectfilter .secondRow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.projectfilter .row.sixth button {
  width: 70px;
  padding: 10px;
  border: none;
  cursor: pointer;
  background-color: #fece51;
}
.projectfilter .row.sixth button img {
  width: 24px;
  height: 24px;
}.toggle-group {
  display: inline-flex;
  gap: 8px;
}

.toggle-btn {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-btn:hover {
  border-color: #007bff;
}

.toggle-btn.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}
.iconImage {
  width: 24px;
  height: 24px;
}

.projectRow {
  height: 100%;
  width: 100%;
}

.projectcols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.projectcols .firstCol {
  display: flex;
  flex: 4;
}
.projectcols .secondCol {
  flex: 1;
  display: flex;
}
@media (max-width: 767px) {
  .projectcols .firstCol,
  .projectcols .secondCol {
    flex-basis: 100%;
    width: auto; /* Or remove the width property entirely */
  }
}

.displayProjectPage {
  display: flex;
  height: 100%;
  padding-bottom: 10px;
  flex-direction: column;
}
.displayProjectPage .projectContainer {
  display: flex;
  height: calc(100dvh - 100px);
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
}
@media (max-width: 1023px) {
  .displayProjectPage .projectContainer {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .displayProjectPage .projectContainer {
    width: 100%;
  }
}
.displayProjectPage .buttons {
  display: flex;
  gap: 5px;
}
.displayProjectPage .buttons button {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  cursor: pointer;
}
.displayProjectPage .buttons button img {
  width: 16px;
  height: 16px;
}
.displayProjectPage .advertisementContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 1023px) {
  .displayProjectPage .advertisementContainer {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .displayProjectPage .advertisementContainer {
    width: 100%;
  }
}

.firstCol {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
@media (max-width: 1023px) {
  .firstCol {
    margin-bottom: 50px;
  }
}

.secondCol {
  display: flex;
  height: auto;
  overflow-y: auto;
  margin-bottom: 5px;
}
@media (max-width: 1023px) {
  .secondCol {
    margin-bottom: 5px;
  }
}

.firstCol .ProjectImageswrapper {
  padding-right: 5px;
  width: 100%;
  height: auto;
}
@media (max-width: 1366px) {
  .firstCol .ProjectImageswrapper {
    padding-right: 5px;
  }
}
@media (max-width: 1023px) {
  .firstCol .ProjectImageswrapper {
    padding-right: 2px;
  }
}
.firstCol .ProjectImageswrapper .mapContainer {
  width: 100%;
  height: 200px;
  position: relative; /* Leaflet needs positioning context */
  min-height: 200px; /* ensures it never collapses */
  z-index: 10000; /* so controls aren’t hidden */
  overflow: hidden; /* keeps tiles from overflowing */
}

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

.firstCol .Descriptionwrapper .info {
  margin-top: 5px;
}
.firstCol .Descriptionwrapper .info .project {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.firstCol .Descriptionwrapper .info .project h1 {
  font-weight: 400;
}
.firstCol .Descriptionwrapper .info .project .address {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #888;
  font-size: 14px;
}
.firstCol .Descriptionwrapper .info .project .address img {
  width: 16px;
  height: 16px;
}
.firstCol .Descriptionwrapper .info .project .price {
  padding: 5px;
  background-color: rgba(254, 205, 81, 0.438);
  border-radius: 5px;
  width: max-content;
  font-size: 20px;
  font-weight: 300;
}

.bottom {
  margin-top: 5px;
  color: #555;
  line-height: 10px;
}

.projectDeveloper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: black;
  gap: 10px;
  border-radius: 10px;
  font-weight: 600;
}
.projectDeveloper .developerName {
  display: flex;
  flex-direction: row;
  height: 100px;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: #ffff00;
  border: 2px solid black;
  border-radius: 5px;
  cursor: pointer;
}
.projectDeveloper .developerName .user {
  background-color: transparent;
}
.projectDeveloper .downloadBrochure {
  display: flex;
  align-items: center;
  font-size: 12px;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 2px solid black;
  border-radius: 5px;
}
.projectDeveloper .downloadBrochure span {
  width: 100%;
  text-align: center;
}
.projectDeveloper .userComm {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.projectDeveloper .userComm .CommItem {
  width: 100%;
}
@media (max-width: 767px) {
  .projectDeveloper {
    padding: 20px 50px;
  }
}
.projectDeveloper button {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
}
.projectDeveloper button span {
  display: flex;
  flex-direction: row;
  width: 100%;
  text-align: center;
}
.projectDeveloper img {
  width: 50px;
  height: 50px;
  border-radius: 5%;
  object-fit: cover;
}

.sizes {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1366px) {
  .sizes {
    font-size: 12px;
  }
}
.sizes .size {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

.displayProjectPage .slide-image {
  object-fit: contain;
}
.pageContent {
  height: calc(100vh - 160px);
  overflow-y: auto;
}

.SaveContactPage .FormContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.FormRow {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 1/3 width */
.FormRow label {
  flex: 1;
  font-weight: 600;
  color: #333;
}

/* 2/3 width */
.FormRow .inputCol {
  flex: 2;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* 📱 Mobile: stack */
@media (max-width: 600px) {
  .FormRow {
    flex-direction: column;
    align-items: stretch;
  }
  .FormRow label,
  .FormRow input {
    flex: none;
  }
  .inputCol input {
    width: 100%;
  }
}
.SaveContactPage input {
  width: 100%;
}

.SaveContactPage .buttonContainer {
  padding: 5px;
  gap: 10px;
  display: flex;
}/* This part should be at the top level in your index.scss,
   where html, body, and #root styles are defined. */
html {
  /* height: 80%;*/
  overflow-x: hidden;
  overflow-y: auto;
}

html, body, #root {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-y: auto; /* Ensure this is 'auto' for the main page scrollbar */
  overflow-x: hidden;
  font-family: "Raleway", Helvetica, sans-serif;
}

#root {
  display: flex;
  flex-direction: column;
  /* No overflow here, let the body handle it */
}

.MainPageHeader {
  height: 50px;
  background-color: #ded6d3;
  display: flex;
  width: 100%;
  align-items: center;
  border: 1px solid #8a8888; /* Solid black border */
  border-radius: 10px; /* Rounded corners */
}
.MainPageHeader h1 {
  padding: 0px 20px;
  line-height: 30px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.PageHeader {
  height: 50px;
  background-color: #cbc8c6;
  display: flex;
  width: 100%;
  align-items: center;
  border: 1px solid #8a8888; /* Solid black border */
  border-radius: 10px; /* Rounded corners */
}
.PageHeader h1 {
  padding: 0px 20px;
  line-height: 30px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.PagesubHeader {
  display: flex; /* To make it a flex container */
  align-items: center; /* To vertically center content within the flex */
  border-radius: 5px;
  width: 100%;
  flex: 0 0 30px;
  background-color: #c2b7b4;
  padding: 0px 10px;
}
.PagesubHeader h1 {
  font-size: 8px;
  font-weight: 600;
}
.PagesubHeader {
  flex-basis: auto;
  flex-grow: 1; /* Ensure this is also present if the parent is a flex container */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  width: auto;
  padding: 10px;
  background-color: rgb(161, 158, 158);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 30px;
}

button:hover {
  background-color: #0056b3;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: grey;
}

input {
  padding: 20px;
  padding: 20px;
  border: 1px solid gray;
  border-radius: 5px;
}

/* --- Webkit (Chrome, Safari, Edge) Scrollbar Styles --- */
/* Target the scrollbar itself */
body::-webkit-scrollbar {
  width: 10px; /* Set the width of the vertical scrollbar */
  /* height: 10px; If you had a horizontal scrollbar and wanted to style its height */
}

/* Style the draggable part of the scrollbar (the thumb) */
body::-webkit-scrollbar-thumb {
  background-color: #888; /* Example: Dark gray */
  border-radius: 5px; /* Optional: Round the corners */
  border: 1px solid #f1f1f1; /* Optional: Add a border */
}#splash-screen {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  transition: opacity 0.5s ease;
}

#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.splashScreen .logoBox {
  width: 50%;
  height: 50%;
  display: flex;
  border: 2px solid black;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border-style: solid;
  background-color: black;
  padding: 2px;
}

.logoSvg {
  width: 100%;
  height: 100%;
}