#fullscreenOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999; 
    flex-direction: column; 
}

#fullscreenOverlay img {
    object-fit: contain;
    border-radius: 5px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}
.package-card {
  display: block;
  width: 100%;
}

  .package-card img {
display: block;
  width: 100%;              
  height: 220px;         
  object-fit: cover;       
  border-radius: 8px;   
  cursor: pointer;

}

.property-item{
     display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.price{
    cursor: pointer;
}

.property-item .position-relative {
  flex: 0 0 auto;
}

.property-item .p-4 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card-text {
    cursor: pointer;
    font-size: 19.2px;
     min-height: 48px; 
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color:#0077b6;
  font-weight: 600;
}

.property-item h5 {
  margin-top: auto;
}

.package-card-text:hover {
    text-decoration: underline;
   
}

.ribbon {
  position: absolute;
  top: 15px;
  right: -50px;
  width: 160px;
  background: #4fc3f7; /* light blue */
  color: white;
  text-align: center;
  line-height: 30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 2;
}

.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.tags-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
  cursor: text;
  min-height: 46px;
  background: #fff;
}

.tags-input input {
  border: none;
  outline: none;
  flex: 1;
  padding: 8px;
  min-width: 120px;
}

.tag {
  background: #007bff;
  color: white;
  padding: 4px 8px;
  border-radius: 15px;
  margin: 2px;
  display: flex;
  align-items: center;
}

.tag span {
  margin-left: 6px;
  cursor: pointer;
  font-weight: bold;
}

.suggestions {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 2px;
  width: 100%;
  max-height: 180px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.suggestion-item {
  padding: 8px 12px;
  cursor: pointer;
}

.suggestion-item:hover {
  background: #f1f1f1;
}