/**
 * Profile page styles for ConsultClock
 */

/* Format all table cells */
.card table td {
    vertical-align: middle;
}

/* Make the table headers look nice */
.card table th {
    background-color: #2CBEF4;
    color: white;
    text-align: left;
    font-weight: 600;
    padding: 12px 15px;
}

/* Format the value cells */
#profile-name, 
#profile-email, 
#profile-role {
    font-weight: normal;
    padding: 12px 15px;
    vertical-align: middle;
    text-align: left;
}

/* Add some hover effect */
.card table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Format the role badge */
.role-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    background-color: #2CBEF4;
    color: white;
}

/* User role badge */
.role-user {
    background-color: #6c757d;
}