#map {
    height: 200px;
}
.carousel-item img {
    height: 400px;
    object-fit: cover;
}
.img-thumbnail {
    height: 100px;
    object-fit: cover;
    cursor: pointer;
}
.owner-profile {
    display: flex;
    align-items: center;
}
.profile-pic-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.verification-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}
.verification-badge svg {
    width: 100%;
    height: 100%;
}
.owner-name {
    font-size: 16px;
    font-weight: bold;
}
.features-list {
    list-style-type: none;
    padding-left: 0;
}
.features-list li {
    margin-bottom: 0.5rem;
}
.features-list i {
    margin-right: 0.5rem;
}
.bold-800 {
   font-weight : 800;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #000;
}
.breadcrumb-item a {
    text-decoration: none;
    color : gray;
}
.breadcrumb-item.active {
    color: #000;
}
.image-gallery {
    width: 100%;
}
.main-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
   /* Creates a square aspect ratio */
    background-color: #f0f0f0;
   /* Light grey background */
}
#mainImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.thumbnail-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
    flex-wrap: wrap;
}
.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}
.thumbnail.active {
    border-color: #007bff;
}
.payment-info {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info-item:last-child {
    margin-bottom: 0;
}
.info-item i {
    color: #00a699;
    font-size: 20px;
    margin-right: 10px;
}
.payment-icons {
    display: flex;
    margin-left: auto;
}
.payment-icon {
    height: 30px;
    margin-left: 5px;
}
  .booking-form {
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .nav-tabs .nav-link {
    color: #495057;
  }
  .nav-tabs .nav-link.active {
    font-weight: bold;
  }
  .form-control {
    border-radius: 5px;
  }
  .time-picker {
    font-size: 1.2em;
    text-align: center;
  }
  .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
  }
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  .time-picker-container {
    display: flex;
    justify-content: space-between;
  }
  .time-picker {
    width: 48%;
  }
  .time-display {
    font-size: 24px;
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .nav-tabs .nav-link {
            color: #495057;
        }
        .nav-tabs .nav-link.active {
            font-weight: bold;
        }
        .form-control {
            border-radius: 5px;
        }
        .time-picker {
            font-size: 1.2em;
            text-align: center;
        }
        .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
        }
        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .selectable-monthly-day {
    background-color: #4CAF50 !important;
    color: white !important;
    border-color: #4CAF50 !important;
}
.disabled-monthly-day {
    color: #ccc !important;
    cursor: not-allowed !important;
}
.flatpickr-day.selected {
    background-color: #2196F3 !important;
    border-color: #2196F3 !important;
}
.price-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.price-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.price-table-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.price-table th, .price-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.price-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.price-table td {
    font-size: 18px;
    color: #555;
}

.price-value {
    font-weight: 600;
    color: #32BD7A;
}

.unavailable {
    color: #dc3545;
    font-weight: 700;
}

.availability-container {
  margin-top: 20px;
  margin-bottom: 30px;
}

.availability-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.availability-table th,
.availability-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.availability-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.availability-table tr:last-child td {
  border-bottom: none;
}

.availability-table td.unavailable {
  color: #dc3545;
  font-weight: 500;
}

.availability-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.availability-table tr:hover {
  background-color: #f1f3f5;
}



.image-gallery {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust as needed */
}

#mainImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation-arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-arrow {
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 25px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
}

.image-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

