/* START - BuddyPress Friends Integration Social Counts */

html.dark-mode .bmps-social-counts {
    margin: 15px 0;
    width: 100%;
}

html.light-mode .bmps-social-counts {
    margin: 15px 0;
    width: 100%;
}

html.dark-mode .bmps-counts-wrapper {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

html.light-mode .bmps-counts-wrapper {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

html.dark-mode .bmps-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    color: #e0e0e0;
}

html.light-mode .bmps-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    color: #333333;
}

html.dark-mode .bmps-count-item:hover {
    background-color: #2a2a2a;
    color: #4CAF50;
}

html.light-mode .bmps-count-item:hover {
    background-color: #f0f0f0;
    color: #4CAF50;
}

html.dark-mode .bmps-count-number {
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
}

html.light-mode .bmps-count-number {
    font-size: 20px;
    font-weight: 700;
    color: #4CAF50;
}

html.dark-mode .bmps-count-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    color: #e0e0e0;
}

html.light-mode .bmps-count-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    color: #333333;
}

html.dark-mode .bmps-count-item:hover .bmps-count-number {
    color: #5ec857;
}

html.light-mode .bmps-count-item:hover .bmps-count-number {
    color: #5ec857;
}

/* END - BuddyPress Friends Integration Social Counts */
