

.comm_notes .note {
    padding: 0.3em 0.3em 0.3em 0.8em;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    background-color: rgba(0,0,0,0.015);
    margin: 0 0 0.8em 0;
    box-shadow: inset 0 0.2em 0.5em rgba(0,0,0,0.04);
}

.comm_notes .data {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.comm_notes .data .owner {
    border-radius: 4px;
    background-color: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.2em 0.5em;
    margin: 0 0.5em 0 0;
}

.comm_notes .data .owner i {
    color: var(--psmlist-primary);
    margin: 0 0.3em 0 0;
}

.comm_notes .data .author {
    font-family: Windlass, Roboto, sans-serif;
}


.comm_notes .date {
    font-size: 0.8em;
    opacity: 0.7;
    margin: 0 1em;
    font-style: italic;
}

.comm_notes .spacer_big {flex-grow: 12;}
.comm_notes .spacer_small {flex-grow: 1;}

.comm_notes .note .content {
    margin: 0.3em 0 0 0;
}

.comm_notes .hidden {
    background: repeating-linear-gradient(
        45deg,
        rgba(0,0,0,0.03),
        rgba(0,0,0,0.05) 10px,
        transparent 10px,
        transparent 20px
    );
}



.comm_notes .actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.3em;
}
.comm_notes .actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em;
    border-radius: 5px;
    background-color: rgb(255,255,255);
    border: 1px solid rgba(0,0,0,0.07);
    text-decoration: none;
    color: var(--psmlist-primary);
}
.comm_notes .actions a:hover {
    background-color: var(--psmlist-primary);
    color: white;
}

.comm_notes .actions i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.1em;
}

.comm_notes .hidden .hidden_msg {
    font-size: 0.9em !important;
    font-style: italic;
    opacity: 0.55;
    margin: 0;
    text-align: right;
}