html {
    height: 100%;
}

#load_st_bar {
  z-index: 1080;
}

#toasts_area {
    z-index: 200;
}

.form-registration {
  max-width: 600px;
}
.form-signin {
  max-width: 330px;
}
.form-signin,
.form-registration {
  width: 100%;
  margin: auto;
}
.form-signin .checkbox,
.form-registration, .checkbox {
  font-weight: 400;
}

.form-signin input[type="email"],
.form-registration input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"],
.form-registration input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#sec_data .d-flex {
  gap: 2px;
}

.lfy_pt_image {
  height: 240px;
  /* max-width: 100%; */
}

.lfy_users_img {
  max-height: 120px;
}

.lfy_text_shadow {
  text-shadow: 2px 2px 2px rgb(150 150 150 / 75%);
}

.lfy_property_tabs {
  height: 150px;
}

.lfy_property_tabs > div {
  max-height: 130px;
}

a[lfy_pt_desc]::after {
  content: ' ...';
}

[lfy_bullet]::before {
  content: '\2022';
  margin-right: 3px;
}

form .lfy_google_map {
  height: 300px;
}

.rating-wrapper {
  label {
    color: #E1E6F6;
    cursor: pointer;
    transition: color 0.5s;
  }
  
   svg {
     -webkit-text-fill-color: transparent;
     -webkit-filter: drop-shadow (4px 1px 6px rgba(198, 206, 237, 1));
     filter:drop-shadow(5px 1px 3px rgba(198, 206, 237, 1));
  }

  label:hover,
  label:hover ~ label,
  input:checked ~ label  {
    color: #34AC9E;
  }

  label:hover,
  label:hover ~ label,
  input:checked ~ label  {
    color: #34AC9E;
  }
}

.lfy-on-hover {
  display: none;
}
.lfy-hover-show:hover .lfy-on-hover {
  display: block; 
}

.navbar svg, svg.icon {
  height: 24px;
  width: 24px;
  /* stroke: white; */
  fill: rgb(13, 110, 253);
  margin-right: 2px;;
}

.text-secondary svg.icon {
  fill: rgba(var(--bs-secondary-rgb),var(--bs-text-opacity)) !important;
}

.text-danger svg.icon {
  fill: rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important;
}

.text-success svg.icon {
  fill: rgba(var(--bs-success-rgb),var(--bs-text-opacity)) !important;
}

.text-warning svg.icon {
  fill: rgba(var(--bs-warning-rgb),var(--bs-text-opacity)) !important;
}

.text-primary svg.icon {
  fill: rgba(var(--bs-primary-rgb),var(--bs-text-opacity)) !important;
}

/* Drag and drop styles */
#pimages [lfy_form_image] {
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: grab;
  user-select: none;
}

#pimages [lfy_form_image].dragging {
  cursor: grabbing;
}

#pimages [lfy_form_image].drag-over {
  border-color: #0d6efd !important;
}

/* Bootstrap override for drag state */
#pimages [lfy_form_image].dragging .img-thumbnail {
  opacity: 0.8;
}

/* Visual feedback during drag */
[lfy_form_image].drag-ghost {
    border: 2px dashed #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.1);
}

/* Update your existing dragover style */
[lfy_form_image].drag-over {
    border-top: 2px solid #0d6efd !important;
}

/* CSS to size the payment logos */
.payment-logo {
    height: 1.5rem; /* Adjust as needed for desired size */
    width: auto; /* Maintain aspect ratio */
    margin-left: 0.5rem; /* Spacing between logos */
}

/* Optional: Style for required labels */
.form-floating label.required::after {
    content: " *";
    color: red;
}

.card-display {
    /* position: relative;
    border-radius: 15px;
    overflow: hidden; */
    transition: all 0.3s ease;
    /* border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}
.card-display:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.card-display.default::after {
    content: 'DEFAULT';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}
.card-display .number {
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}
.star-rating {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s ease;
    margin: 0 2px;
}

.star-rating:hover,
.star-rating.text-warning {
    color: #ffc107;
}

.star-rating .icon {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
}

/* Star ratings */
.stars {
    color: #ffc107;
    display: inline-flex;
    gap: 2px;
}

/* .stars.small .icon {
    width: 14px;
    height: 14px;
} */

/* Rating badges */
.rating-badge {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000;
    font-weight: bold;
}

/* Progress bars for rating breakdown */
.rating-progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}