* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}


body {
  background: #f9f9f9;
  color: #333;
  height: 100%;
  width: 100%;
}

/* For Chrome, Safari, Edge */
body::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
/* body {
    scrollbar-width: none;
} */

/* Navbar */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}


#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:50px;
  margin-bottom: 8px;
  margin-top: 5px;
  position: relative;
  top: 0;
  z-index: 1000;
  /* border: 2px solid; */
}

.logo {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: 50px;
  right: 10px;
  background: #333;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  min-width: 120px;
  z-index: 2000;
}

.dropdown a {
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #444;
}

.dropdown a:hover {
  background: #555;
}

.dropdown a:last-child {
  border-bottom: none;
}

.img img {
  /* margin: 5px 0px 0px 5px; */

  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  /* border: 2px solid #ff5722; */
}

@media (max-width: 400px) {
  nav#header {
    display: flex;
    justify-content: space-between;
    /* pushes logo left, links right */
    align-items: center;
    padding: 0.5rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  .hero {
    width: 99%;
  }
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
  /* Optional spacing between the two */
  margin-left: 0;
}

#h1 {
  color: #00e14f;
  /* Red or any color you like */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.6em;
  margin: 0;
}

#h2 {
  color: rgb(255, 123, 0);
  /* Blue or another color */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 1.6em;
  margin: 0;
}



.nav-links button {
  padding: 0.5rem 1rem;
  border: none;
  background: #ff5722;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 500px) {
  .nav-links {
    gap: 0.6rem;
    /* tighter gap */
  }

  .nav-links button {
    padding: 0.3rem;
  }
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* centers text/buttons inside */
  margin: 0 auto;
  /* centers the whole hero block on the page */
  width: 100%;
  min-height: 450px;
  /* gives it enough height for the image */
  text-align: center;
  background: url("images/streetfood6.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}

@media (max-width: 500px) {
  .hero {
    min-height: 500px;
    background: url("images/streetfood6.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
  }
}

/* Optional: add a semi-transparent overlay for better text readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  z-index: 0;
}

.hero h1,
h2,
p,
.hero-buttons {
  position: relative;
  z-index: 1;
  margin: 0px 10px;
  /* keep text above overlay */
}

.hero-buttons a.btn {
  background: transparent;
  border: 2px solid #f9b233;
  color: #f9b233;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease-out;
  text-decoration: none;
}

.hero-buttons a:hover {
  background-color: #e8760b;
  color: white;
  transform: scale(1.1);
}

.hero-buttons a.btn:hover {
  background: #ff9c4d;
}

.hero p {
  font-size: 1.2rem;
  color: white;
  font-style: italic;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  margin: 10px 0 20px;
}

@media (max-width: 500px) {
  .hero p {
    font-size: 1rem;
  }
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #e8760b;
}

.hero-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons button {
  background: transparent;
  border: 2px solid #f9b233;
  color: #f9b233;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease-out;
}

/* Hover effect */
.hero-buttons button:hover {
  background-color: #e8760b;
  color: white;
  transform: scale(1.1);
}

@media (max-width: 500px) {
  .hero-buttons button {
    /* height: 50px;
    width: 100px; */
    padding: 5px;
  }
}


/* Login-Form */
.login-container {
  background-color: #fff;
  padding: 35px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-form h2 {
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

/* Style all inputs inside login-form, including password wrapper */
.login-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #453f3f;
  /* Red border */
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  color: #000;
}

/* Focus style */
.login-form input:focus {
  border-color: #4f46e5;
  /* Purple on focus */
  outline: none;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

#togglePassword {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #4f46e5;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background: #4338ca;
}

.extra-links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.extra-links a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.3s;
}

.extra-links a:hover {
  color: #3730a3;
}


/* review section */
/* Add the new CSS class to handle hiding elements */
.hidden {
  display: none !important;
}

/* Rest of your CSS */
.getInput {
  display: flex;
  flex-direction: row;
  /* Ensure horizontal layout */
  gap: 30px;
  padding: 20px;
  background: linear-gradient(to right, rgb(146, 118, 118), rgb(122, 154, 173));
  color: #f1c13b;
  font-family: 'Times New Roman', Times, serif;
  width: 100%;
  box-sizing: border-box;
}


app-content button {
  background: #ff751a;
  color: black;
  border: none;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
}

app-content button:hover {
  background: #ff9c4d;
}


.getInput form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.getInput #app-content #review-form input[type="text"],
.getInput #app-content #review-form input[type="email"],
.getInput #app-content #review-form input[type="password"],
.getInput #app-content #review-form input[type="number"],
.getInput #app-content #review-form input[type="tel"],
.getInput #app-content #review-form textarea,
.getInput #app-content #review-form select {
  color: black;
  border: none;
  border-radius: 10px;
  padding: 10px;
}


/* Shared styles to help layout */
#app-content,
#img-content {
  flex: 1;
  box-sizing: border-box;
}

/* Review section */
#app-content {
  padding: 8px;
  width: 50%;
  /* Not strictly necessary if flex: 1 is used */
}

/* Image section */
#img-content {
  width: 50%;
  border: 2px solid green;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#img-content img {
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#img-content p {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
}

.desc1,
.desc2 {
  height: 90%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.desc1 p,
.desc2 p {
  text-align: center;
  font-weight: 700;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.gradient-text {
  background: linear-gradient(to right, rgb(253, 253, 253), rgb(255, 255, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Responsive layout for mobile */
@media (max-width: 900px) {
  /* .getInput {
    display: flex;
    flex-direction: row !important;
  } */

  #img-content {
    display: none;
  }

  #app-content {
    width: 100%;
  }
}


#value-section {
  border: 1px solid wheat;
  border-radius: 10px;
  background-color: #707070;
  padding: 10px 0px;

  height: 150px;
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  justify-content: center;
  align-items: center;
}

.photo-btn {
  background-color: #303030;
  color: #ffffff;
  height: 3em;
  border: none;
  border-radius: 6px;
  padding: 0 16px;
  cursor: pointer;
}

.photo-btn:hover {
  background-color: #505050;
}

#review-photo,
#photo-file {
  color: #ffffff;
  margin-top: 6px;
}

#upload-photo {
  /* margin: 10px; */
  padding: 15px 0px 0px 0px;
  border: 1px solid wheat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  background-color: #707070;
}

.submit-btn {
  background-color: #ef860e;
  color: #ffffff;
  margin: 10px;
  padding: 10px;
  height: 3em;
  width: 10rem;
  /* border: none; */
  border-radius: 6px;
  display: block;
  margin: 10px auto;
  text-align: center;
}

#photo-preview-container {
  width: 100%;
  margin-top: 10px;
}


.review-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  padding: 10px;
}

.review-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 1rem;
  max-width: 100%;
  margin: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.review-card:hover {
  transform: translateY(-5px);
}

.user-review-grid {
  display: flex;
}

.vendor-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.vendor-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 15px 0 0px;
  color: #333;
}

.review-card p {
  margin: 6px 15px;
  font-size: 0.95rem;
  color: #555;
}

.review-card p strong {
  color: #000;
}

@media (max-width: 600px) {
  .vendor-name {
    font-size: 1rem;
  }

  .review-card p {
    font-size: 0.9rem;
  }
}


#photo-preview-container img {
  width: 100%;
  max-height: 250px;
  /* or any height you want */
  object-fit: cover;
  border-radius: 8px;
}

.vendor-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* Search Section */
.search-section {
  text-align: center;
  height: 360px;
  /* border: 2px solid red; */
  padding: 1.5rem;
  background: linear-gradient(to right, rgb(229, 229, 229), rgb(173, 217, 229));
  margin: 1rem auto;
  max-width: 100%;
  /* border-radius: 20px; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-section input,
.search-section button {
  padding: 0.6rem;
  margin: 0.3rem 0;
  border: 1px solid white;
  border-radius: 10px;
}

.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.filters button {
  background: #ffffff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  /* Smooth transition */
}

.filters button:hover,
.search:hover {
  cursor: pointer;
  transform: scale(1.1);
  background-color: #e6a23c;
  color: white;
}

.filters button:active,
.search:active {
  transform: scale(1.2);
  background-color: #ff9800;
  color: white;
}

.popular-tags {
  /* border: 2px solid; */
  border-radius: 10px;
  padding: 1rem;
  /* background:linear-gradient(to right,rgb(94, 138, 189),rgb(166, 185, 196)) ; */
  background-color: #d5d5d5;
  margin-top: 1rem;
  margin: 0px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.popular-tags span {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
  background: #ffbf00;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  cursor: pointer;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Aligns vertically if needed */
  text-align: center;
}

.popular-tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center everything horizontally */
  justify-content: center;
  /* Center vertically if section has height */
  margin-top: 2rem;
}

.popular-tags span:active {
  transform: scale(1.2);
  background-color: #ff9800;
  color: white;
}

/* finding review: */
#event-vendor-section {
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

#event-vendor-section h4 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: #333;
}

.event-vendor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.event-vendor-card {
  background: white;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.event-vendor-card:hover {
  transform: translateY(-5px);
}

.event-vendor-card h3 {
  margin: 0 0 0.5rem;
  color: #333;
}

.event-vendor-card p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #555;
}

/* Vendor Cards */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 1rem;
  padding: 1rem;
  max-width: 100%;
  margin: auto;
  /* <— enable horizontal scrolling */
  /* optional: makes scroll snap to cards */
}

.user-review-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem;
  max-width: 100%;
  scroll-snap-type: x mandatory;
  /* Optional: makes snapping work */
}


.vendor-grid::-webkit-scrollbar,
.user-review-grid ::-webkit-scrollbar {
  display: none;
  /* optional: hide scrollbar */
}

.vendor-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  scroll-snap-align: start;
  /* optional: for smooth snap */
}

.vendor-card p {
  margin-left: 0px;
}

.vendor-photo {
  height: 170px;
  background: #ddd;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  /* ensures image stays inside rounded corners */
}

.vendor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* crop without stretching */
  display: block;
}

.vendor-name {
  font-weight: bold;
}

.vendor-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

/* New User Reviews : */
.userReviews,
#search-result {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  /* border: 2px solid red; */
  padding: 1rem;
  max-width: 100%;
  gap: 8px;

}

.newReviews {
  height: 100%;
  width: 360px;
  border: 1px solid rgb(193, 199, 184);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.newReviews img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  padding: 5px;
  border-radius: 10px;
}

.newDetail {
  display: flex;
  flex-direction: column;
  padding: 5px 0px;
  gap: 3px;
}

.giveReview {
  display: flex;
  justify-content: space-between;
}

.newDetail p {
  /* margin: 1px 10px; */
  font-size: 0.95rem;
  color: #555;
}

.newDetail {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

.newReviews .newDetail .main #p2:active {
  transform: scale(1.2);
  background-color: #2caf48;
  color: white;
}

.newReviews .newDetail .giveReview .satisfyButton #b1:active {
  transform: scale(1.1);
  background-color: #2caf48;
  color: white;
}

.newReviews .newDetail .giveReview .satisfyButton #b2:active {
  transform: scale(1.1);
  background-color: #ec1b1b;
  color: white;
}

.newReviews .newDetail .giveReview .report:active {
  transform: scale(1.2);
  background-color: #ec1b1b;
  color: white;
}

.satisfyButton {
  display: flex;
  gap: 10px;
  margin-left: 10px;
  /* border: 2px solid; */
}

.satisfyButton #b1 {
  color: green;
  font-size: 10px;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 2px;
  border: 1px solid green;
  border-radius: 5px;
  cursor: pointer;

}

.satisfyButton #b2 {
  color: rgb(182, 58, 58);
  font-size: 10px;

  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding: 2px;
  border: 1px solid rgb(187, 32, 32);
  border-radius: 5px;
  cursor: pointer;

}

.report {
  display: flex;
  border-radius: 5px;
  margin-right: 5px;
  cursor: pointer;
  background-color: #ff2424;
  color: white;
}

.report p {
  font-size: 14px;
  color: white;
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main #p1 {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.main .viewBtn {
  font-size: 14px;
  font-weight: bold;
  background-color: #ff9203;
  color: #fff9f9;
  border: 1px solid;
  border-radius: 5px;
  padding: 3px 5px;
  cursor: pointer;
  width: 80px;
}

/* Map Section */
.map-section {
  max-width: 1200px;
  margin: 1rem auto;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.map-placeholder {
  height: 250px;
  background: #ddd;
  border-radius: 8px;
}

/* Why Choose Us */
.features {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.feature {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

/* Join Community */
.join {
  text-align: center;
  padding: 2rem;
}

.join button {
  padding: 0.8rem 1.5rem;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Vendor Registration */
.vendor-registration {
  display: none;
  justify-content: center;
  align-items: center;
}

.container {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

.container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.container label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #555;
}

.container input,
.container select,
.container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.container textarea {
  resize: vertical;
}

.container button {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}



.success {
  text-align: center;
  color: green;
  font-weight: bold;
  margin-top: 15px;
}

/* Map section */
.map-container {
  display: flex;
  justify-content: center;
  /* centers horizontally */
  margin: 20px auto;
  width: 100%;
}

.map-container iframe {
  width: 90%;
  /* 90% of page width */
  height: 250px;
  /* you can adjust height */
  border: 0;
  border-radius: 10px;
  /* optional rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* optional shadow */
}

.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

.toast.success {
  background-color: #4caf50;
}

.toast.error {
  background-color: #f44336;
}

/* Full screen overlay loader for review submit */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

#loader-overlay .loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #f1c13b;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Spinner inside submit button */
#review-submit.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

#review-submit.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid #fff;
  border-top: 2px solid #f1c13b;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.highlight-review {
  background-color: #fff3cd;
  /* soft yellow */
  transition: background-color 2s ease;
}


/* Even Booking Cards */

.event-vndor-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.event-vendor-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 320px;
  /* margin: 20px auto; */
  transition: transform 0.2s ease-in-out;
}

.event-vendor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.event-vendor-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.event-vendor-card h3 {
  margin: 10px 0;
  font-size: 22px;
  color: #333;
}

.event-vendor-card p {
  margin: 5px 0;
  font-size: 15px;
  color: #555;
}

.book-btn {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  background: #ff6b6b;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #e63946;
}

.back-btn {
  position: fixed;
  margin: 10px;
  z-index: 100;

  background: #ff8330;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #e84118;
  /* darker red on hover */
  transform: scale(1.05);
}

.back-btn:active {
  transform: scale(0.95);
}

/* Report PopUp Box */
/* Popup background */
.popup-overlay {
  display: none;
  /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup box */
.popup-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-box textarea {
  width: 100%;
  height: 80px;
  margin: 10px 0;
  padding: 8px;
  resize: none;
}

.popup-box button {
  padding: 8px 16px;
  margin: 5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn {

  background: #28a745;
  color: white;
}

.close-btn {
  background: #dc3545;
  color: white;
}