/* Expert live status container */
.expert-live-status {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    margin-top: 6px;
    margin-bottom: 8px;
    line-height: normal;
}

/* Dot indicator */
.expert-live-status .online,
.expert-live-status .offline {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.expert-live-status.online {
    background: transparent;
    color: #28a745;
}
.expert-live-status.offline {
    background: transparent;
    color: #abb8c3;
}
/* Online */
.expert-live-status.online .online {
    background-color: #28a745; /* green */
}

/* Offline */
.expert-live-status.offline .offline {
    background-color: #e74c3c; /* red */
}

/* Optional: add a subtle transition for status change */
.expert-live-status .online,
.expert-live-status .offline {
    transition: background-color 0.3s ease;
}

.expert-profile-rating {
  color: #ffc107;
  font-size: 13px;
  margin-top: 6px;
}

.expert-profile-rating.ahep-dir-stars, .expert-profile-rating.ahep-minimal-rating{
    font-size: 13px;
}