﻿.mylistingimg {
    height:350px !important;
    width:100% !important;
}

.btnaligntop {
    margin-top: 30px !important;
}
.heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-wrapper {
    display: flex;
    justify-content: flex-end; /* Desktop: right */
}

@media (max-width: 768px) {
    .btn-wrapper {
        justify-content: flex-start; /* Mobile: left */
    }
}

.media-post1 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 3px;
}

    .media-post1:hover {
        background: rgba(0,0,0,0.8);
    }


.loan-desc {
    font-family: Arial, sans-serif; /* Clean font */
    font-size: 16px; /* Readable text size */
    line-height: 1.6; /* Good spacing between lines */
    margin-bottom: 15px; /* Space between paragraphs */
    color: #333; /* Dark grey text */
}

    .loan-desc strong {
        font-weight: 700; /* Makes the title bold */
        color: #0056b3; /* Optional: Makes the title a professional blue */
    }


.list-default li strong,
.list-default li b {
    font-weight: bold !important;
    font-weight: 700 !important; /* Numeric backup */
    color: #000; /* Optional: ensures it's dark enough to see */
}

/* The main dropdown container */
.ui-autocomplete {
    position: absolute;
    z-index: 9999 !important;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 12px; /* Matches your site's rounded look */
    box-shadow: 0px 10px 25px rgba(54, 95, 104, 0.1);
    padding: 4px 0;
    list-style: none;
    /* Remove min-width: 100% to stop it from stretching to page width */
}

/* Individual items */
.ui-menu-item {
    margin: 0;
    cursor: pointer;
    list-style: none;
}

    /* The wrapper inside the item where text lives */
    .ui-menu-item .ui-menu-item-wrapper {
        padding: 10px 20px;
        display: block;
        font-family: "Manrope", sans-serif;
        color: #161e2d;
    }

/* Styling the "Active/Hover" state - matches your theme blue */
.ui-menu-item-wrapper.ui-state-active,
.ui-menu-item-wrapper:hover {
    background-color: #4F7496 !important;
    color: #ffffff !important;
    border: none !important;
    margin: 0 !important;
    border: 1px solid #e4e4e4;
    border-radius: 12px; /* Matches your site's rounded look */
}






/* Container for the chips and the input */
.multi-select-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 2px 2px;
    /*border: 1px solid #e4e4e4;*/
   /* border-radius: 99px;*/ /* Matches your site's rounded inputs */
    background: #fff;
   /* min-height: 48px;*/
}

.multi-select-wrapper:focus-within {
    border-color: #1F4E79; /* Brand blue from your styles.css */
}

/* The actual tags/chips */
.selected-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f3f7fd; /* Light primary background */
    color: #1F4E79;
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    border: 1px solid #acc6ec;
}

.remove-tag {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #1F4E79;
}

    .remove-tag:hover {
        color: #c72929; /* Matches text-danger from your styles.css */
    }

/* The transparent input inside the container */
.autocomplete-input {
    border: none !important;
    flex: 1;
    min-width: 100px;
    outline: none;
    padding: 4px 0 !important;
    background: transparent !important;
}

/* Styling the dropdown list to match your theme */
.ui-autocomplete {
    border-radius: 12px !important;
    box-shadow: 0px 10px 25px rgba(54, 95, 104, 0.1) !important;
    border: 1px solid #e4e4e4 !important;
    font-family: "Manrope", sans-serif;
}

