.user-notes-form div { margin-bottom: 15px; }
.user-notes-form label { display: block; font-weight: bold; margin-bottom: 5px; }
.user-notes-form input, .user-notes-form textarea { width: 100%; padding: 8px; border: 1px solid #ccc; }
/* Circular Avatars */
.user-avatar img { 
    border-radius: 50%; 
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: block;
}

/* User Section Card */
.user-notes-section.card {
    border-left: 4px solid #2271b1;
    border-radius: 8px;
    max-width: 100%;
    margin-bottom: 30px;
    padding: 15px;
}

.user-notes-section:hover {
    border-left-color: #3582c4;
    transition: border-color 0.2s ease-in-out;
}

/* Header & Info */
.user-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-info h2 {
    margin: 0;
    line-height: 1.2;
    font-size: 1.3rem;
    color: #1d2327;
}

.user-info .count {
    font-weight: normal; 
    color: #666; 
    font-size: 0.8em;
}

/* Search Box Spacing */
.user-notes-overview-search {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}