﻿.trash-icon {
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .trash-icon:hover {
        transform: scale(1.2); /* Grow a bit */
        color: #dc3545; /* Ensure Bootstrap red */
    }

    .trash-icon:active {
        transform: scale(0.9); /* Shrink slightly when clicked */
    }
/* Avatar circle */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.avatar-initials {
    text-transform: uppercase;
}

/* Trash icon hover effect */
.bi-trash-fill:hover {
    transform: scale(1.2);
    transition: 0.2s ease-in-out;
}