﻿.status-dot {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    background: #22c55e; /* green */
    border: 2px solid white; /* ring to separate from photo */
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08); /* subtle outline */
}

.status-dotOffline {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    background: #808080;
    border: 2px solid white; /* ring to separate from photo */
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08); /* subtle outline */
}

.ProPic {
    position: relative;
}

.ProPic-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 2px;
    border-radius: 5px;
    background-color: white;
    text-align: center;
    z-index: 2;
}

.ProPic:hover .ProPic-content {
    display: block;
}