.container {
  width: 95%;
  max-width: 1350px;
  margin: 0 auto;
}

.page-header {
  background-color: #f0f0f0; /* Light gray background */
  min-height: 150px;
  display: flex;
  margin: 0 auto;
  color: #333;
}

/* Start Archive Page | Property List*/
.archive-page-list {
  margin: 80px 0;
}
.archive-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 25px; /* Space between grid items */
  margin-top: 30px;
  max-width: 100%;
}

.property-card {
  overflow: hidden;
  box-shadow: 0px 5px 20px 0px rgba(23, 44, 82, 0.1);
  transition: transform 0.3s ease;
  margin: 5px;
}

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

.property-card .card-title a {
  font-size: 22px;
  color: #333;
  text-decoration: none;
}
.property-card .card-title a:hover {
  color: #174876;
}
.property-card .card-title {
  min-height: 55px;
}
.property-card .card-address {
  min-height: 45px;
}
.property-card .property-features {
  display: flex;
  justify-content: flex-end;
}
.property-features .feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.property-features span {
  font-size: 0.9rem;
}
.property-features i {
  font-size: 22px;
}
.property-card img {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
}
.property-card .property-image {
  position: relative;
}
.property-card .property-date-available {
  background: #0000008f;
  text-align: center;
  color: #ddd;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 5px;
}
.property-card .card-body .card-address {
  font-size: 14px;
  margin: unset;
}
.property-card .card-body .card-info {
  padding: 30px;
}
.property-card .property-price {
  font-size: 18px;
  font-weight: 800;
  color: #004876;
  margin: unset;
}
.property-card .card-body .card-bottom {
  border-top: 1px solid #e5eaee;
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
}
.property-card .property-features .mr-3 {
  margin-right: 7px;
}

.property-features span {
  margin-right: 10px;
}

/* pagination */
.pbay-property-pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.pbay-property-pagination a,
.pbay-property-pagination span {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  border: 1px solid #004876; /* Border color */
  border-radius: 5px; /* Rounded corners */
  color: #004876; /* Text color */
  text-decoration: none; /* Remove underline */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover */
}

.pbay-property-pagination a:hover {
  background-color: #004876; /* Background color on hover */
  color: white; /* Text color on hover */
}

.pbay-property-pagination .current {
  background-color: #004876; /* Current page background color */
  color: white; /* Current page text color */
  border: 1px solid #004876; /* Border color for current page */
}

.pbay-property-pagination .disabled {
  color: #ccc; /* Disabled link color */
  border: 1px solid #ccc; /* Border color for disabled links */
  pointer-events: none; /* Disable clicks */
}
/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .archive-wrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

/* For mobile devices (max-width 768px) */
@media screen and (max-width: 768px) {
  .archive-wrapper {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

/* Single Page | Property Details*/
.single-wrapper {
  margin: 60px 0;
}

.archive-title {
  border-left: 3px solid;
  padding-left: 8px;
}

.property-intro,
.property-details,
.property-description {
  padding-bottom: 30px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 30px;
}

.swiper-slide {
  max-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  height: 100%;
  min-height: 400px;
  width: 100%;
  object-fit: cover;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #004876;
}

.single-property .dialog-lightbox-widget {
	display: none !important;
}

/* Button */
.btn-primary {
  background: #004876;
  border-color: #004876;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  margin-right: 20px;
}

.btn-primary:hover {
  background-color: #004876;
  border-color: #004876;
  color: #fff;
}

.page-header .entry-title {
  margin: 0;
}
.property-details table tbody > tr:nth-child(odd) > td,
.property-details table tbody > tr:nth-child(odd) > th {
  background-color: #fff !important;
}
.property-details table td,
.property-details table th {
  border: none !important;
}
.property-details table tbody tr:hover > td,
table tbody tr:hover > th {
  background-color: #fff !important;
}
.property-details-table {
  width: 100%;
  border-collapse: collapse;
}

.property-details-table th,
.property-details-table td {
  padding: 10px;
  text-align: left;
  font-size: 16px;
}

.property-details-table th {
  color: #555;
  font-weight: 600;
  width: 150px; /* Ensures the labels column has a fixed width */
}

.property-details-table td {
  color: #333;
}

.property-details-table tr:last-child td {
  border-bottom: none;
}

.grid-container {
  display: grid;
  grid-template-columns: 9fr 3fr;
  gap: 100px;
  width: 100%;
}

.outline-button {
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  margin-bottom: 30px;
  border: 1px solid #004876;
  background-color: transparent;
  color: #004876;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative; /* Ensure relative positioning for pseudo-element */
}

.outline-button:hover {
  background-color: #004876;
  color: #fff !important;
}

.outline-button::after {
  content: "→"; /* Unicode for right arrow */
  font-size: 16px; /* Adjust the size of the arrow */
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.outline-button:hover::after {
  right: 10px;
}

.outline-button:focus {
  outline: none;
}
.sinlge-property-tag {
  margin-bottom: 50px;
}
.property-intro .entry-title {
  font-size: 22px;
  font-weight: 600;
  color: #071c1f;
}
.property-description .archive-title {
  color: #071c1f;
}

.no_properties {
  font-size: 1.2rem;
  color: #333;
  background-color: #f8f9fa;
  border: 2px dashed #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  max-width: 400px;
  margin: 40px auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.no_properties i {
  font-size: 1.8rem;
  color: #004876;
}

/* Optional: Add responsiveness */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: unset;
    gap: 50px;
    padding: 0px 25px;
  }
}
