/* =============================================
   Doctor Badges Plugin — doctor-badges.css
   ============================================= */

.db-wrapper {
    font-family: inherit;
    margin: 0;
    padding: 0;
}

/* ── Section title ── */
.db-section-title {
    margin: 0 0 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ── Row of circles ── */
.db-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Individual circle wrapper ── */
.db-circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
    position: relative;
}

/* ── Doctor circle ── */
.db-circle {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 0 0 1.5px #e5e7eb;
    flex-shrink: 0;
}


.db-circle img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* ── Initials fallback ── */
.db-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    user-select: none;
}

/* ── Green online dot (doctor circles) ── */
.db-green-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 1px solid #ffffff;
    z-index: 10;
    display: block;
}

/* ── Green dot on the +N more circle ── */
.db-more-dot {
    top: 2px;
    right: 2px;
}

/* ── +N More circle ── */
.db-more-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    flex-shrink: 0;
    user-select: none;
}


@media (max-width: 480px) {
    .db-circle, .db-more-circle {
        width: 60px;
        height: 60px;
    }
    .db-row { gap: 10px; }
}
