﻿.user-profile {
    position: relative;
    display: inline-block;
}

.initials-circle {
    width: 40px;
    height: 40px;
    background-color: #0078D4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}


.profile-dropdown-menu {
    position: absolute;
    top: 100%; /* places it directly below the parent */
    right: 0;
    background-color: white;
    padding: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f5fff5 !important; /* light green */
}

.table-striped tbody tr:has(td:empty) {
    display: none !important;
}

.table-striped-not-quickgrid tbody tr:nth-of-type(odd) {
    background-color: #f5fff5 !important; /* light green */
}


.account-display {
    font-size: 1.5rem;
    color: #444;
    padding-right: 1rem;
}


.top-row {
    display: flex;
    align-items: center;
    justify-content: center; /* This centers content horizontally */
    height: 60px; /* or whatever height you want */
    background-color: #f8f9fa; /* optional */
}

.account-info {
    text-align: center;
    flex-grow: 1;
}

.top-border {
    margin-top: 20px;
}










