/* 1. The Main Flexbox Wrapper */
.listing-details-flexbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    background: #f7f8f9 !important;
    border: 1px solid #eceeef !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
    overflow: hidden !important;
    width: 100% !important;
}

/* Hide if empty or no text content */
.listing-details-flexbox:empty {
    display: none !important;
}

/* 2. The Label (Left Side - Assuming it's the first element inside the flexbox) */
.listing-details-flexbox > :first-child {
    background: #eff1f3 !important;
    color: #666 !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    padding: 10px 15px !important;
    margin: 0 !important;
    min-width: 100px !important;
    border-right: 1px solid #dfe3e7 !important;
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}

/* 3. The Value (Right Side - Assuming it's the second element) */
.listing-details-flexbox > :nth-child(2) {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 15px !important;
    flex-grow: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #0d233e !important;
    text-overflow: ellipsis !important;
}

/* Clean up Icons if they exist inside */
.listing-details-flexbox i,
.listing-details-flexbox::before {
    display: none !important;
}

/* Tablet/Mobile View */
@media (max-width: 767px) {
    .listing-details-flexbox {
        flex-direction: row !important;
    }
    .listing-details-flexbox > :first-child {
        min-width: 100px !important;
        font-size: 12px !important;
    }
}
