/* RentNearby - Custom Styles & Utilities */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
}

/* Custom smooth transitions */
.transition-all-custom {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Listing card hover zoom */
.listing-card {
    cursor: pointer;
}

.listing-card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.listing-card-img-wrapper img {
    transition: transform 0.5s ease;
}

.listing-card:hover .listing-card-img-wrapper img {
    transform: scale(1.05);
}

/* Badge styling */
.badge-active {
    background-color: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.badge-rented {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Location Card Highlight */
.location-section-card {
    border-left: 4px solid #2563eb;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

/* OTP 6-Digit input boxes */
.otp-digit-input {
    width: 3.25rem;
    height: 3.75rem;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.otp-digit-input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    background-color: #ffffff;
}

/* Checkbox pill toggle for amenities */
.amenity-checkbox-input:checked + .amenity-pill {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

/* Image preview thumbnails */
.image-preview-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Micro typography utilities */
.text-2xs {
    font-size: 0.65rem !important;
    line-height: 0.85rem !important;
}
.text-3xs {
    font-size: 0.55rem !important;
    line-height: 0.75rem !important;
}


