﻿.profile-circle {
    width: 35px;
    height: 35px;
    background-color: #3498db; /* Background color */
    color: white; /* Letter color */
    border-radius: 50%; /* Makes it circular */
    display: flex; /* Center content */
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
}

.profile-circle-lg {
    width: 50px;
    height: 50px;
    background-color: #3498db; /* Background color */
    color: white; /* Letter color */
    border-radius: 50%; /* Makes it circular */
    display: flex; /* Center content */
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    font-size: 20px;
}