body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #222;
}
.navbar {
    border-bottom: 1px solid #eee;
}
.navbar-brand {
    font-weight: 700;
    color: #111 !important;
}
.search-bar input {
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    border: 1px solid #ddd;
}
footer {
    border-top: 1px solid #eee;
    padding: 1rem 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}
.no-bullets {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

/* Fullscreen overlay */
#loader {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.navbar, .header, .container {
    overflow: visible !important;
}

.booked-date a {
    background-color: #dc3545 !important; /* red for booked */
    color: white !important;
}

.ui-datepicker {
    z-index: 9999 !important; /* ensures it appears above Bootstrap modal/nav */
}

.dropdown-menu {
    z-index: 1055 !important; /* higher than navbar (1030), modal (1050) */
}
.alert ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.carousel-inner {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 0.5rem; /* rounded corners */
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: #000; /* optional: letterbox background */
    transition: transform 0.5s ease-in-out;
}

.carousel-item img:hover {
    transform: scale(1.02);
}

.card.shadow-sm {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/*.card.shadow-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}*/

.price-label {
    background: #39FF14;
    color: black;
    font-weight: bold;
    border: 1px solid #ccc;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.thumbnail-strip::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-strip::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.listing-card {
    position: relative;
}

.listing-card .remove-btn {
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    pointer-events: none;
    z-index: 5; /* Keep it above the image */
}

.listing-card:hover .remove-btn {
    opacity: 1;
    pointer-events: auto;
}

.listing-card .image-wrapper {
    position: relative;
    z-index: 1;
}
#priceSummary{
    margin-bottom: 0px;
}

#room-price {
    max-width: 120px;
    text-align: right;
}