
/* Users managements : account, profile
 * 
 */

/*user info : my account */
/* Row container */
.kv-row {
    display: grid;
    /* Creates two columns for key-value alignment */
    grid-template-columns: 1fr 2fr;
    /* Adds a thin, transparent bottom border to each row */
    border-bottom: 1px solid rgba(6, 102, 140, 0.5);
}

/* Styles for key and value cells */
.kv-k,
.kv-v {
    padding: 5px;
    color: #333333; /* Dark gray text */
    /* Truncates overflowing text with an ellipsis */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Specific styles for key cells */
.kv-k {
    font-weight: bold;
}