/* CriticMarkup Plugin Styles */

/* Addition (inserted text) */
ins {
    background-color: #d4fcbc;
    text-decoration: none;
    color: #000;
}

/* Deletion (removed text) */
del {
    background-color: #fdb8c0;
    text-decoration: line-through;
    color: #000;
}

/* Highlight */
mark {
    background-color: #fffacd;
    color: #000;
}

/* Comment indicator */
.critic-comment {
    cursor: help;
    color: #6495ed;
    font-weight: bold;
    padding: 0 2px;
}

/* Optional: Hover effects */
ins:hover {
    background-color: #c1f7a3;
}

del:hover {
    background-color: #fda0ab;
}

mark:hover {
    background-color: #fff59d;
}
