@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");


/* Hide dynamic fields until JS decides to show them */
#search-bar-wrapper,
#location-bar-wrapper,
#category-wrapper,
#search-button-wrapper,
#date_time_fields_to_hide,
.date-time-fields {
  display: none;
}
.filter-btn.selected {
  background-color: #2aff00 !important; /* darker blue */
  color: #020102 !important;
  border: 2px solid #3116d1fc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* General styles */
/* Clean branding styles extracted from inline HTML */
.branding-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.branding-text {
  margin-left: 15px;
}

.unique-company-name {
  display: block;
  color: #8B0000;          /* Dark Red */
  font-weight: bold;
  font-size: 1.2em;
}

.highlighted-name {
  color: #FF6347;          /* Tomato Red */
}

.unique-tagline {
  display: block;
  color: #B22222;          /* Firebrick */
  font-size: 0.9em;
}

.highlighted-tagline {
  color: #FA8072;          /* Salmon */
}

/* 🎯 VetoSite Unique Subscription Badge Styling */
.vs-subscription-status-badge {
  color: #15803d;           /* Tailwind's text-green-700 */
  font-size: 0.75rem;       /* Tailwind's text-xs */
  font-weight: 600;         /* Tailwind's font-semibold */
  margin-top: 0.25rem;      /* Tailwind's mt-1 */
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fbfbfd;
} */
body {
  min-height: 100vh;
  background: #fbfbfd;
}

/* .container {
  display: flex;
  width: 100%;
} */
.container {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.container-footer {
  display: flex;
  width: 100%;
}

/* Sidebar styles */
/* .sidebar {
  width: 250px;
  background-color: #f0f0f0;
  height: 100vh;
  position: fixed;
  transition: transform 0.3s ease;
  transform: translateX(0);
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 20px;
  z-index: 1000;
}

.sidebar.closed {
  transform: translateX(-250px);
} */

.sidebar {
  width: 250px;
  background-color: #f0f0f0;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 20px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.sidebar.closed {
  transform: translateX(-100%);
}

.sidebar-list {
  list-style: none;
  padding-left: 20px;
}

.sidebar-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sidebar-list li:hover {
  background-color: #e0e0e0;
}

.sidebar-list img {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}

.toggle-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 250px;
  transition: left 0.3s ease;
  z-index: 1001;
}

.sidebar.closed ~ .toggle-btn {
  left: 0;
}

/* Main content styles */
/* .main-content {
  margin-left: 250px;
  padding: 20px;
  width: calc(100% - 250px);
  transition: margin-left 0.3s, width 0.3s;
} */

.main-content {
  padding: 20px;
  width: 100%;
  max-width: 1200px; /* reasonable max width */
  box-sizing: border-box;
  transition: all 0.3s ease;
  flex-grow: 1;
  margin: 0 auto; /* ✅ centers horizontally */
}

.main-content.expand {

  width: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff; /* White background */
  padding: 15px 20px;
  border-bottom: 3px solid #F44336; /* Red border */
  border-radius: 0 0 20px 20px; /* Curvy bottom edges */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern look */
  align-items: flex-end;
}

.header.expand {
  margin-left: 0;
  width: 100%;
}

.header .logo img {
  width: 50px;
  border-radius: 10px; /* Optional: curvy edges for the logo */
}

.header .profile-menu-container {
  position: relative;
  display: flex;
  align-items: center;
}

.header .profile-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.header .profile-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e0f2f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .profile-icon span {
  font-size: 16px;
  color: #333;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 0;
}

.dropdown-content {
  
  position: absolute;
  top: 100%;
  left: 0;
  right: auto; /* Ensure the dropdown appears on the left side */
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown-btn i {
  transition: transform 0.3s;
}

.dropdown.open .dropdown-btn i {
  transform: rotate(180deg);
}

.dropdown.open .dropdown-content {
  display: block;
}

.search-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-bar-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-bar, .location-bar {
  display: flex;
  flex-direction: column;
  flex: 1; /* Ensure both fields take up equal space */
}

.search-bar label,
.location-bar label {
  margin-bottom: 5px;
}

.search-bar input[type="text"],
.location-bar input[type="text"] {
  padding: 10px;
  border: 1px solid #00796b; /* Border color */
  border-radius: 20px; /* Curvy edge */
  background-color: #e0f2f1; /* Background color */
  color: #004d40; /* Text color */
  width: 100%; /* Full width inside the flex container */
}

.search-bar input[type="text"]::placeholder,
.location-bar input[type="text"]::placeholder {
  color: #004d40; /* Placeholder text color */
}

/* Date and time fields styles */
.date-time-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* Ensure fields wrap on smaller screens */
  justify-content: space-between; /* Space out the items */
  width: 100%; /* Ensure full width */
}

.date-time-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align labels to the start */
  flex: 1; /* Make each date-time-row take equal space */
}

.date-time-row label {
  margin-bottom: 5px;
  text-align: left; /* Align the label text to the left */
}

.date-time-row input[type="date"],
.date-time-row input[type="time"],
.date-time-row select {
  padding: 10px;
  border: 1px solid #00796b; /* Border color */
  border-radius: 20px; /* Curvy edge */
  background-color: #e0f2f1; /* Background color */
  color: #004d40; /* Text color */
  width: 100%;
}

.customDateInput {
  padding: 10px;
  border: 1px solid #00796b; /* Border color */
  border-radius: 20px; /* Curvy edge */
  background-color: #e0f2f1; /* Background color */
  color: #004d40; /* Text color */
  width: 100%;
}


.date-time-row input[type="date"]::placeholder,
.date-time-row input[type="time"]::placeholder {
  color: #004d40; /* Placeholder text color */
}

/* Card styles */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: calc(33% - 20px);
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}



.card img {
  width: 100%; /* This makes the image fit the width of the card */
  /* height: 200px; Set a fixed height for all images */
  object-fit: contain; /* Ensures the image maintains aspect ratio and fills the area */
  border-radius: 10px; /* Keeps the rounded corners */
}







.card-details {
  margin-top: 10px;
  text-align: left;
}

.card-details h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.card-details p {
  margin-bottom: 5px;
  font-size: 1em;
}

.card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: red;
}

.car-review {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.car-review .username {
  font-weight: bold;
  margin-right: 5px;
}

.location-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.location-price .price {
  margin: 0;
  font-weight: bold;
}

/* Pagination styles */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination button {
  background: none;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 0 5px;
  cursor: pointer;
}

.pagination .page-number {
  width: 30px;
}

/* Footer styles */
.new_footer_area {
  background: #fbfbfd;
}

.new_footer_top {
  padding: 60px 0px;
  position: relative;
  overflow-x: hidden;
}

.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 27px 0px;
}

.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.btn_get:hover {
  color: #fff;
  background: #6754e2;
  border-color: #6754e2;
  box-shadow: none;
}

a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
  text-decoration: none;
  outline: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #5e2ced;
}

.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;

}

.f_widget.about-widget .f_list li {
  flex: 1 1 calc(20% - 20px); /* 5 items per row */
}

.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}

.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  transition: all 0.2s linear;
}

.new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}

.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}

.new_footer_top .f_title {
  margin-bottom: 30px;
  color: #263b5e;
}

.f_600 {
  font-weight: 600;
}

.f_size_18 {
  font-size: 18px;
}

.new_footer_top .footer_bg {
  position: relative;
  bottom: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  animation: myfirst 30s linear infinite;
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .main-content {
    margin-left: 0;
    width: 100%;
  }

  .sidebar {
    width: 250px;
    transform: translateX(-250px);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .toggle-btn {
    left: 0;
    transform: rotate(0deg);
  }

  .sidebar-list li {
    justify-content: flex-start;
  }
  container
    .sidebar-list img {
      width: 30px;
      height: 30px;
    }
}

@media (max-width: 768px) {
  .header .logo img {
    width: 120px;
  }

  .header .profile-icon img {
    width: 35px;
    height: 35px;
  }

  .search-container {
    padding: 15px;
  }

  .search-bar-wrapper {
    flex-direction: column;
  }

  .search-bar input[type="text"],
  .location-bar input[type="text"],
  .date-time-fields input[type="date"],
  .date-time-fields input[type="time"],
  .date-time-fields select {
    padding: 8px;
  }

  .card {
    width: calc(100% - 20px);
  }

  .card-details h3 {
    font-size: 1em;
  }

  .card-details p {
    font-size: 0.9em;
  }

  .card-heart {
    font-size: 20px;
  }

  .pagination button {
    padding: 8px;
  }

  .pagination .page-number {
    width: 25px;
  }

  .footer_bottom {
    font-size: 12px;
  }

  .new_footer_top .f_widget.about-widget .f_list li {
    flex: 1 1 calc(50% - 20px); /* 2 items per row */
  }

  .new_footer_top .f_social_icon a {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 39px;
  }

  .new_footer_top .f_title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .vs-subscription-status-badge {
    font-size: 0.5rem;
    margin-top: 0.2rem;
  }
  .unique-company-name {
    font-size: 0.7em; /* slightly smaller for small screens */
  }

  .unique-tagline {
    font-size: 0.7em;
  }

  .branding-text {
    margin-left: 10px;
  }
  .toggle-btn {
    font-size: 20px;
    top: 15px;
  }

  .header .logo img {
    width: 50px;
  }

  .header .profile-icon img {
    width: 30px;
    height: 30px;
}

.search-container {
    padding: 10px;
}

.search-bar-wrapper {
    flex-direction: column;
}

.search-bar input[type="text"],
.location-bar input[type="text"],
.date-time-fields input[type="date"],
.date-time-fields input[type="time"],
.date-time-fields select {
    padding: 6px;
}

.date-time-fields {
    flex-direction: column; /* Ensure fields stack on smaller screens */
}

.date-time-row {
    flex-direction: column;
}

.card-details h3 {
    font-size: 0.9em;
}

.card-details p {
    font-size: 0.8em;
}

.card-heart {
    font-size: 18px;
}

.pagination button {
    padding: 6px;
}

.pagination .page-number {
    width: 20px;
}

.footer_bottom {
    font-size: 10px;
}

.new_footer_top .f_widget.about-widget .f_list li {
    flex: 1 1 calc(100% - 20px); /* 1 item per row */
}

.new_footer_top .f_social_icon a {
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 34px;
}

.new_footer_top .f_title {
    font-size: 14px;
}

/* Align sidebar icons */
.sidebar-list li {
    justify-content: flex-start;
}

.sidebar-list img {
    margin-right: 10px;
}
}

.card-details {
  display: flex;
  flex-direction: column;
}

.car-review {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.car-review .username {
  font-weight: bold;
  margin-right: 5px;
}

.location-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.location-price .price {
  margin: 0;
  font-weight: bold;
}


