/* ================================================
   Mobile Member Cards Styles
   ================================================ */

/* Parent class to scope all mobile member card styles */
.mobile-member-card {
    margin-bottom: 1.5rem;
}

/* Profile Image Container */
.mobile-member-card .profile-image-container img {
    height: 350px;
    object-fit: cover;
    object-position: center;
}

/* Image Overlay with Name, Age, Gender, ID */
.mobile-member-card .image-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
}

.mobile-member-card .image-overlay h4 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Card Styling */
.mobile-member-card .card {
    border-radius: 15px;
}

/* Badge Gradients */
.mobile-member-card .badge-marital-status {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    font-size: 0.9rem;
    white-space: normal;
}

.mobile-member-card .badge-marital-status span {
    line-height: 1.5;
}

.mobile-member-card .badge-location {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 0.9rem;
    max-width: 100%;
    white-space: normal;
    text-align: left;
}

.mobile-member-card .badge-location i {
    margin-top: 0.25rem;
}

.mobile-member-card .badge-location span {
    word-break: break-word;
    line-height: 1.5;
}

/* Looking For Section */
.mobile-member-card .looking-for-section {
    /* Add any specific styles if needed */
}

/* Action Buttons */
.mobile-member-card .btn-group-actions {
    /* Add any specific styles if needed */
}

/* Filter Button Styling */
.filter-icon.btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: auto;
}

.filter-icon.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.filter-icon.btn:active {
    transform: translateY(0);
}

.filter-icon.btn i {
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .section.search{
        padding-top: 0px;
    }
    .mobile-member-card .profile-image-container img {
        height: 300px;
    }

    .filter-icon.btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    .member-wrapper .mobile-member-card{
        padding-left: 0px;
        padding-right: 0px;
    }
}
