/**
 * Extracted from pages/friends/my-friends.php
 */

/* Friends Management Styles */
.list-view .friend-item {
flex: 0 0 100%;
max-width: 100%;
}

.list-view .card {
flex-direction: row;
align-items: center;
}

.list-view .card-body {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
text-align: left;
}

.list-view .card-body > div:first-child {
display: flex;
align-items: center;
gap: 1rem;
}

.list-view .card-body .btn-group {
flex-shrink: 0;
}

.friend-checkbox {
z-index: 10;
}

.friend-item {
transition: all 0.3s ease;
}

.friend-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.online-indicator {
position: absolute;
top: 10px;
right: 10px;
width: 12px;
height: 12px;
background: #28a745;
border-radius: 50%;
border: 2px solid white;
}

.compatibility-badge {
font-size: 0.75rem;
}

.friends-stats .card {
transition: transform 0.2s ease;
}

.friends-stats .card:hover {
transform: translateY(-2px);
}

.search-highlight {
background-color: yellow;
padding: 2px 4px;
border-radius: 3px;
}
