/* Friends List Styles */
#friends-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.friend-card {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Ensures the overlay respects the border radius */
}

.friend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    border-radius: 8px;
    z-index: 1; /* Sits above the background but below the content */
}

.friend-card > * {
    position: relative; /* To appear above the overlay */
    z-index: 2;
}

.friend-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.friend-card h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff; /* White color for better contrast */
    text-shadow: 0 0 5px rgba(0,0,0,0.7); /* Text shadow for readability */
}

.friend-card .btn {
    margin-top: 15px;
}
