/* Profile Card Reset & Refinement */
.profile-listing-card-inline {
    background: #fff;
    border-radius: 6px;
    padding: 20px; /* Reduced from 24px */
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.profile-listing-card-inline:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.profile-card-image-wrapper-new {
    position: relative;
    width: 80px;
    height: 80px;
}

.profile-card-image-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.profile-card-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.verified-badge-on-image {
    position: absolute;
    bottom: -2px;
    right: -2px;
    z-index: 5;
    background: #fff;
    border-radius: 50%;
    /* Create a small white padding around the badge to pop it out */
    padding: 2px;
}

/* Global Premium Blue Tick Verified Badge */
.verified-badge-premium {
    color: #38bdf8 !important; /* Premium Sky Blue */
    font-size: 18px !important;
    margin-left: 0;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.3));
    cursor: help;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.verified-badge-premium::after {
    content: "\f00c"; /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 8px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Original Style Tags */
.tag-verified-only { display: none !important; }

.tag-premium-fixed {
    background: #9eb86e !important; /* Original Green */
    color: #fff !important;
    padding: 2px 8px; /* Reduced from 4px 12px */
    border-radius: 6px;
    font-size: 10px; /* Reduced from 11px */
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(158, 184, 110, 0.3);
    display: flex;
    align-items: center;
}

.online-status-dot {
    width: 8px; /* Reduced from 10px */
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    margin: auto 4px;
}

/* Action Buttons Restored Style */
.bookmark-fixed-btn {
    font-size: 25px; /* Reduced from 20px */
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.bookmark-fixed-btn.active {
    color: #84c0ca;
}

/* Unused styles removed */

.card-title-fixed {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem; /* Reduced from 1.1rem */
    color: #333;
    margin: 0;
}

.profile-location-small {
    font-size: 11px; /* Reduced from 12px */
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-location-small i {
    color: #84c0ca;
}

.summary-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #4b5563;
}

/* Clean up */
.card-aura { display: none !important; }
