 
        .trash-container {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            cursor: pointer;
            padding: 5px 8px;
            font-size: 12px;
        }
        .delete_btn {
            background-color: #dc3545;
            color: white;
            border: none;
        }
        .edit_btn {
            background-color: #17a2b8;
            color: white;
            border: none;
        }
        .shield_btn {
            color: blueviolet;
            border: 1px solid blueviolet;
        }
        .trash-container:hover {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }