/* Favorites Tab Grid Layout */
.bp-favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2em 0;
    padding: 0;
    list-style: none;
}
.bp-favorites-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    position: relative;
}
.bp-favorites-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
.bp-favorites-avatar {
    margin-bottom: 0.7em;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}
.bp-favorites-avatar img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}
.bp-favorites-name {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #21759b;
    text-decoration: none;
    transition: color 0.2s;
}
.bp-favorites-name:hover {
    color: #005177;
    text-decoration: underline;
}
.bp-favorites-btn {
    margin-top: 0.5em;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.4em 1.1em;
    font-size: 0.98em;
    cursor: pointer;
    transition: background 0.2s;
}
.bp-favorites-btn:hover {
    background: #c0392b;
}
/* Basic styles for BuddyPress Member Favorites */
.bp-favorites-btn {
    background: #21759b;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 6px 12px;
    margin: 2px 0;
    cursor: pointer;
    font-size: 14px;
}
.bp-favorites-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
.bp-favorites-list, .bp-most-favorited {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bp-favorites-item, .bp-most-favorited-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.bp-fav-count {
    margin-left: 8px;
    color: #888;
}
